Historic Volume/Market ProfilesHistoric Volume/Market Profile is a Periodic Volume Profile with all of the improvements known in the original Volume/Market Profile.
VMP is a 2 in 1 Volume and Market Profile Indicator.
HVMP uses the base of VMP to offer a quick and simple view at multiple historic profiles at the same time.
This includes:
Cluster Identification for High Volume and Low Volume Areas.
Maximizing granularity by utilizing boxes and lines to get up to 1000 rows.
New Inclusions in HVMP vs VMP:
HVMP granularity is determined by the # of profiles on display. By doing this, each profile will get an even amount of allocated rows to use and granularity is scaled per-profile, to fit within the row allowance.
For Example: 1000/(# of profiles) = Maximum # of rows per profile.
HVMP introduces the "Auto-Scale" Option (on by Default), this automatically fits each profile within the defined timeframe period to provide a consistent display when switching timeframes.
Even with "Auto-Scale" enabled, "Display Size" dictates which direction the profile is displayed.
Below is a Negative Display Size (Displays from right to left, starting at the end of the period)
Below is a Positive Display Size (Displays from left to right, starting at the beginning of the period)
HVMP is only for historical data, you can get a live profile with the same Node Identification using VMP (Volume Market/Profile). The indicator that this one is based on.
Find it Here: Volume/Market Profile
Enjoy!
在腳本中搜尋"volume profile"
Waindrops [Makit0]█ OVERALL
Plot waindrops (custom volume profiles) on user defined periods, for each period you get high and low, it slices each period in half to get independent vwap, volume profile and the volume traded per price at each half.
It works on intraday charts only, up to 720m (12H). It can plot balanced or unbalanced waindrops, and volume profiles up to 24H sessions.
As example you can setup unbalanced periods to get independent volume profiles for the overnight and cash sessions on the futures market, or 24H periods to get the full session volume profile of EURUSD
The purpose of this indicator is twofold:
1 — from a Chartist point of view, to have an indicator which displays the volume in a more readable way
2 — from a Pine Coder point of view, to have an example of use for two very powerful tools on Pine Script:
• the recently updated drawing limit to 500 (from 50)
• the recently ability to use drawings arrays (lines and labels)
If you are new to Pine Script and you are learning how to code, I hope you read all the code and comments on this indicator, all is designed for you,
the variables and functions names, the sometimes too big explanations, the overall structure of the code, all is intended as an example on how to code
in Pine Script a specific indicator from a very good specification in form of white paper
If you wanna learn Pine Script form scratch just start HERE
In case you have any kind of problem with Pine Script please use some of the awesome resources at our disposal: USRMAN , REFMAN , AWESOMENESS , MAGIC
█ FEATURES
Waindrops are a different way of seeing the volume and price plotted in a chart, its a volume profile indicator where you can see the volume of each price level
plotted as a vertical histogram for each half of a custom period. By default the period is 60 so it plots an independent volume profile each 30m
You can think of each waindrop as an user defined candlestick or bar with four key values:
• high of the period
• low of the period
• left vwap (volume weighted average price of the first half period)
• right vwap (volume weighted average price of the second half period)
The waindrop can have 3 different colors (configurable by the user):
• GREEN: when the right vwap is higher than the left vwap (bullish sentiment )
• RED: when the right vwap is lower than the left vwap (bearish sentiment )
• BLUE: when the right vwap is equal than the left vwap ( neutral sentiment )
KEY FEATURES
• Help menu
• Custom periods
• Central bars
• Left/Right VWAPs
• Custom central bars and vwaps: color and pixels
• Highly configurable volume histogram: execution window, ticks, pixels, color, update frequency and fine tuning the neutral meaning
• Volume labels with custom size and color
• Tracking price dot to be able to see the current price when you hide your default candlesticks or bars
█ SETTINGS
Click here or set any impar period to see the HELP INFO : show the HELP INFO, if it is activated the indicator will not plot
PERIOD SIZE (max 2880 min) : waindrop size in minutes, default 60, max 2880 to allow the first half of a 48H period as a full session volume profile
BARS : show the central and vwap bars, default true
Central bars : show the central bars, default true
VWAP bars : show the left and right vwap bars, default true
Bars pixels : width of the bars in pixels, default 2
Bars color mode : bars color behavior
• BARS : gets the color from the 'Bars color' option on the settings panel
• HISTOGRAM : gets the color from the Bearish/Bullish/Neutral Histogram color options from the settings panel
Bars color : color for the central and vwap bars, default white
HISTOGRAM show the volume histogram, default true
Execution window (x24H) : last 24H periods where the volume funcionality will be plotted, default 5
Ticks per bar (max 50) : width in ticks of each histogram bar, default 2
Updates per period : number of times the histogram will update
• ONE : update at the last bar of the period
• TWO : update at the last bar of each half period
• FOUR : slice the period in 4 quarters and updates at the last bar of each of them
• EACH BAR : updates at the close of each bar
Pixels per bar : width in pixels of each histogram bar, default 4
Neutral Treshold (ticks) : delta in ticks between left and right vwaps to identify a waindrop as neutral, default 0
Bearish Histogram color : histogram color when right vwap is lower than left vwap, default red
Bullish Histogram color : histogram color when right vwap is higher than left vwap, default green
Neutral Histogram color : histogram color when the delta between right and left vwaps is equal or lower than the Neutral treshold, default blue
VOLUME LABELS : show volume labels
Volume labels color : color for the volume labels, default white
Volume Labels size : text size for the volume labels, choose between AUTO, TINY, SMALL, NORMAL or LARGE, default TINY
TRACK PRICE : show a yellow ball tracking the last price, default true
█ LIMITS
This indicator only works on intraday charts (minutes only) up to 12H (720m), the lower chart timeframe you can use is 1m
This indicator needs price, time and volume to work, it will not work on an index (there is no volume), the execution will not be allowed
The histogram (volume profile) can be plotted on 24H sessions as limit but you can plot several 24H sessions
█ ERRORS AND PERFORMANCE
Depending on the choosed settings, the script performance will be highly affected and it will experience errors
Two of the more common errors it can throw are:
• Calculation takes too long to execute
• Loop takes too long
The indicator performance is highly related to the underlying volatility (tick wise), the script takes each candlestick or bar and for each tick in it stores the price and volume, if the ticker in your chart has thousands and thousands of ticks per bar the indicator will throw an error for sure, it can not calculate in time such amount of ticks.
What all of that means? Simply put, this will throw error on the BITCOIN pair BTCUSD (high volatility with tick size 0.01) because it has too many ticks per bar, but lucky you it will work just fine on the futures contract BTC1! (tick size 5) because it has a lot less ticks per bar
There are some options you can fine tune to boost the script performance, the more demanding option in terms of resources consumption is Updates per period , by default is maxed out so lowering this setting will improve the performance in a high way.
If you wanna know more about how to improve the script performance, read the HELP INFO accessible from the settings panel
█ HOW-TO SETUP
The basic parameters to adjust are Period size , Ticks per bar and Pixels per bar
• Period size is the main setting, defines the waindrop size, to get a better looking histogram set bigger period and smaller chart timeframe
• Ticks per bar is the tricky one, adjust it differently for each underlying (ticker) volatility wise, for some you will need a low value, for others a high one.
To get a more accurate histogram set it as lower as you can (min value is 1)
• Pixels per bar allows you to adjust the width of each histogram bar, with it you can adjust the blank space between them or allow overlaping
You must play with these three parameters until you obtain the desired histogram: smoother, sharper, etc...
These are some of the different kind of charts you can setup thru the settings:
• Balanced Waindrops (default): charts with waindrops where the two halfs are of same size.
This is the default chart, just select a period (30m, 60m, 120m, 240m, pick your poison), adjust the histogram ticks and pixels and watch
• Unbalanced Waindrops: chart with waindrops where the two halfs are of different sizes.
Do you trade futures and want to plot a waindrop with the first half for the overnight session and the second half for the cash session? you got it;
just adjust the period to 1860 for any CME ticker (like ES1! for example) adjust the histogram ticks and pixels and watch
• Full Session Volume Profile: chart with waindrops where only the first half plots.
Do you use Volume profile to analize the market? Lucky you, now you can trick this one to plot it, just try a period of 780 on SPY, 2760 on ES1!, or 2880 on EURUSD
remember to adjust the histogram ticks and pixels for each underlying
• Only Bars: charts with only central and vwap bars plotted, simply deactivate the histogram and volume labels
• Only Histogram: charts with only the histogram plotted (volume profile charts), simply deactivate the bars and volume labels
• Only Volume: charts with only the raw volume numbers plotted, simply deactivate the bars and histogram
If you wanna know more about custom full session periods for different asset classes, read the HELP INFO accessible from the settings panel
EXAMPLES
Full Session Volume Profile on MES 5m chart:
Full Session Unbalanced Waindrop on MNQ 2m chart (left side Overnight session, right side Cash Session):
The following examples will have the exact same charts but on four different tickers representing a futures contract, a forex pair, an etf and a stock.
We are doing this to be able to see the different parameters we need for plotting the same kind of chart on different assets
The chart composition is as follows:
• Left side: Volume Labels chart (period 10)
• Upper Right side: Waindrops (period 60)
• Lower Right side: Full Session Volume Profile
The first example will specify the main parameters, the rest of the charts will have only the differences
MES :
• Left: Period size: 10, Bars: uncheck, Histogram: uncheck, Execution window: 1, Ticks per bar: 2, Updates per period: EACH BAR,
Pixels per bar: 4, Volume labels: check, Track price: check
• Upper Right: Period size: 60, Bars: check, Bars color mode: HISTOGRAM, Histogram: check, Execution window: 2, Ticks per bar: 2,
Updates per period: EACH BAR, Pixels per bar: 4, Volume labels: uncheck, Track price: check
• Lower Right: Period size: 2760, Bars: uncheck, Histogram: check, Execution window: 1, Ticks per bar: 1, Updates per period: EACH BAR,
Pixels per bar: 2, Volume labels: uncheck, Track price: check
EURUSD :
• Upper Right: Ticks per bar: 10
• Lower Right: Period size: 2880, Ticks per bar: 1, Pixels per bar: 1
SPY :
• Left: Ticks per bar: 3
• Upper Right: Ticks per bar: 5, Pixels per bar: 3
• Lower Right: Period size: 780, Ticks per bar: 2, Pixels per bar: 2
AAPL :
• Left: Ticks per bar: 2
• Upper Right: Ticks per bar: 6, Pixels per bar: 3
• Lower Right: Period size: 780, Ticks per bar: 1, Pixels per bar: 2
█ THANKS TO
PineCoders for all they do, all the tools and help they provide and their involvement in making a better community
scarf for the idea of coding a waindrops like indicator, I did not know something like that existed at all
All the Pine Coders, Pine Pros and Pine Wizards, people who share their work and knowledge for the sake of it and helping others, I'm very grateful indeed
I'm learning at each step of the way from you all, thanks for this awesome community;
Opensource and shared knowledge: this is the way! (said with canned voice from inside my helmet :D)
█ NOTE
This description was formatted following THIS guidelines
═════════════════════════════════════════════════════════════════════════
I sincerely hope you enjoy reading and using this work as much as I enjoyed developing it :D
GOOD LUCK AND HAPPY TRADING!
PATTERNPULSE / Stttrading F.VelazquezPATTERNPULSE
Discover a powerful tool for market analysis with the Velas Engulfing + RSI Indicator. Crafted by Stttrading Franco Velazquez, this indicator seamlessly blends engulfing candle patterns with the precision of the RSI filter. What sets it apart is its unique approach – signals are exclusively generated when the RSI reaches overbought or oversold conditions, providing a distinctive edge over conventional engulfing candle indicators.
Key Features :
Engulfing Candle Patterns: Identify both bullish and bearish engulfing candle formations.
RSI Integration: Harness the strength of the RSI indicator to evaluate market momentum and potential reversals.
Visual Signals: Enjoy clear and intuitive signals directly on your chart for seamless decision-making.
Configurable Alerts: Tailor the indicator to your preferences with customizable alerts for timely notifications.
Usage Instructions:
Engulfing Candles:
Visualize bullish and bearish candles through green and red triangles, respectively.
Capitalize on buying opportunities when bullish candles emerge and consider selling when bearish candles unfold.
RSI Indicator:
Leverage the RSI indicator to gauge overbought and oversold market conditions.
Fine-tune RSI levels based on your trading strategy and risk tolerance.
Alert System:
Set up alerts to stay informed about crucial market movements, ensuring you never miss a trading opportunity.
Custom Configuration:
RSI Source: Customize the data source for RSI calculations to suit your analysis.
RSI Length: Define the length of the RSI period for precise adjustments.
RSI Overbought and Oversold Levels: Tailor the overbought and oversold RSI thresholds to align with your trading preferences.
Important Note: Always conduct thorough analysis and implement proper risk management before executing trades.
Volume Profile in PatternPulse:
In the paid version of the PatternPulse indicator, an advanced Volume Profile tool is included, offering a detailed view of how volume is distributed across different price levels over a specific period. Here's how it works:
Show Volume Profile: You can toggle the display of the volume profile on the chart using the Show VP option.
Depth and Number of Bars Configuration: The tool allows you to adjust the Volume Profile Lookback Depth, which defines how many periods back will be analyzed to calculate the volume profile. You can also set the number of bars (VP Number of Bars) to be displayed on the chart, as well as the bar length and width to customize its appearance.
Delta Type: You can choose from different delta types for the volume profile: Bullish, Bearish, or Both. This enables you to focus on volumes associated with bullish price movements, bearish movements, or both.
Point of Control (POC): The tool also offers an option to extend the Point of Control (POC) line on the volume profile. The POC represents the price level with the highest traded volume during the analyzed period.
Customizable Colors: You can customize the colors of the volume profile bars and the Point of Control (POC) to match your visual preferences.
How to Use It:
The volume profile helps identify price levels where significant volume has been traded, which can be crucial for determining key support and resistance levels in the market. Adjust the parameters to fit your needs for a clear and precise visualization that supports your technical analysis.
Info Box in PatternPulse
In the paid version of PatternPulse, you'll find an info box that provides a comprehensive view of various market aspects. Here's how it works:
General Information: At the top of the info box, you'll see the title "PATTERNPULSEVIP® Info. BOX" in grey with orange text. This title helps you identify that you are viewing the information section.
CCL Dollar: The info box displays the value of the CCL (Contado con Liquidación) dollar for Argentina, which is an important reference for investors in that market.
Indices and Metals: This section includes information on the US Dollar Index (DXY), the Euro Index (EXY), as well as the prices of gold and silver.
Crypto Dominance: Here, you'll see the dominance of Bitcoin (BTC) and Ethereum (ETH) in the cryptocurrency market, helping you understand the influence of these cryptocurrencies on the global market.
MACD: The info box shows the current MACD (Moving Average Convergence Divergence) trend. The trend can be bullish or bearish, providing additional insight into market direction.
RSI: The current RSI (Relative Strength Index) value is also displayed. If the RSI indicates overbought conditions (above 75), the info box will turn teal with white text. If it indicates oversold conditions (below 25), the info box will turn maroon with white text.
Customization: You can adjust the horizontal offset of the info box from the chart and change the style and color of the text to suit your visual preferences.
This info box provides key data at a glance, making it easier to make informed decisions in your technical analysis. Adjust the settings according to your needs to get the most relevant information for your trading strategy.
Bollinger Bands in PatternPulse
In the paid version of PatternPulse, we’ve added the Bollinger Bands (BB) indicator to help you analyze market volatility and trends. Here’s a breakdown of how to use it:
1. Display Options:
Show BB: You can toggle the visibility of the Bollinger Bands on your chart using the "Show BB" option.
2. Configuration:
Length: Adjust the length of the moving average used to calculate the Bollinger Bands. The default is set to 20 periods, but you can modify it to fit your trading strategy.
Source: Choose the data source for the Bollinger Bands calculation, with the default being the closing price.
Standard Deviation: Set the number of standard deviations away from the moving average for the upper and lower bands. The default is 2.0, which is commonly used.
3. Plotting:
Basis: The middle line (basis) of the Bollinger Bands is plotted, which is a simple moving average (SMA) of the specified length.
Upper and Lower Bands: The upper and lower bands are plotted based on the standard deviation from the basis line.
Offset: Adjust the horizontal position of the bands on your chart to better align with your analysis needs.
4. Visualization:
Color: The Bollinger Bands and their background fill are color-coded for easy interpretation. The default colors are shades of blue, but you can customize them if needed.
These Bollinger Bands will help you to visualize price volatility and identify potential market opportunities based on how the price interacts with these bands. Adjust the settings according to your trading preferences to get the most out of this feature.
Parabolic SAR in PatternPulse
In the advanced version of PatternPulse, we've added the Parabolic SAR (PSAR) to help you identify potential trend changes in the market. Here's how this tool works:
1. Activating the Indicator:
Show PSAR: You can toggle the visibility of the Parabolic SAR using the "Show PSAR" option. This controls whether the indicator is displayed on your chart.
2. PSAR Settings:
Start: Adjust the initial value for the PSAR calculation. This value sets the starting point for the acceleration of the indicator.
Increment: Defines the rate at which the PSAR increases. This value increases the acceleration parameter with each new high or low.
Maximum Value: Sets the upper limit for the acceleration parameter. This prevents the indicator from moving too quickly in high-volatility conditions.
3. Visualization:
Color of the Dots: The PSAR dots are displayed in teal if the indicator is below the closing price, indicating a bullish trend. They are shown in maroon if the indicator is above the closing price, indicating a bearish trend.
How to Use It: The Parabolic SAR is useful for identifying potential reversal points in the market. When the indicator switches position relative to the price, it can signal a potential trend change. Use this indicator in conjunction with other analysis tools to make more informed trading decisions.
User Explanation EMAs
This part of the indicator utilizes Exponential Moving Averages (EMAs) to help you identify trends and potential entry or exit points in the market. Here’s how they work and how you can customize them:
What are EMAs?
Exponential Moving Averages (EMAs) are indicators that smooth out historical prices to identify the direction of the trend. Unlike Simple Moving Averages, EMAs give more weight to recent prices, making them more responsive to current price changes.
How Each EMA Works:
1° EMA (Adjustable Length):
Purpose: The first EMA provides a short-term view and can help identify recent movements and potential quick trend changes.
Customization: You can adjust the length of this EMA (number of periods) using the "1° EMA length" option.
2° EMA (Adjustable Length):
Purpose: The second EMA acts as a smoother filter, helping to confirm or discredit signals from the first EMA.
Customization: Adjust its length with "2° EMA length".
3° EMA (Adjustable Length):
Purpose: The third EMA provides a longer-term view, helping to identify mid-term trends and significant turning points.
Customization: Modify its length via "3° EMA length".
4° EMA (Adjustable Length):
Purpose: The fourth EMA represents the long-term trend, offering a perspective on the market’s overall direction.
Customization: Change its length using "4° EMA length".
Customizable Colors:
You can choose the colors for each EMA through the provided color options. This allows you to distinguish each EMA on your chart easily and customize its appearance according to your preferences.
EMA Crosses:
Small Crosses (1° and 2° EMAs):
Functionality: When the 1° EMA crosses above the 2° EMA, it may signal a buy (bullish cross). When it crosses below, it may signal a sell (bearish cross).
Visualization: You can enable or disable the display of these small crosses.
Large Crosses (3° and 4° EMAs):
Functionality: Crosses between the 3° and 4° EMAs help identify more significant trend changes. A bullish cross may indicate an uptrend, while a bearish cross may signal a downtrend.
Visualization: You can also enable or disable these large crosses on your chart.
How to Use This Information:
Trend Identification: EMAs help you see whether the market is in an uptrend or downtrend, and crosses between them can indicate potential trading opportunities.
Entry/Exit Signals: Crosses between EMAs can signal optimal times to enter or exit a position.
This set of EMAs provides you with a clear view of different time frames in the market, allowing you to make more informed trading decisions based on the current trend and price changes.
Support and Resistance
Support and Resistance levels are essential tools in technical analysis, helping traders identify key price levels where the market might reverse or pause. This feature of the indicator provides visual markers for these levels and tracks how the price interacts with them.
Parameters:
Lookback Range: Defines the number of bars to look back when identifying pivot points. A larger value considers more historical data.
Bars Since Breakout: Determines how many bars should have passed since a breakout to detect a potential retest.
Retest Detection Limiter: Limits the number of bars actively checked for confirming a retest after a breakout.
Breakouts and Retests: Options to enable or disable detection for breakouts and retests.
Repainting: Controls how the indicator updates based on different criteria such as candle confirmation or high/low values. This affects how often and in what way the indicator adjusts its markings.
Pivot Points:
Pivot Low and High: The indicator identifies key support (pivot lows) and resistance (pivot highs) points based on the historical price action within the defined lookback range.
Boxes and Labels:
Drawing Boxes: Visual boxes are drawn to represent support and resistance levels. These boxes adjust dynamically with price changes and can extend based on user settings.
Breakout Labels: Labels are created when a breakout occurs, marking the point where the price crosses these support or resistance levels.
Retest Labels: When a potential retest is detected, the indicator can label it to signal areas where the price might test the broken support or resistance.
Customization Options:
Box and Label Styling: Users can customize the style, color, and size of the boxes and labels representing support and resistance.
Text Color Override: Option to change the color of text labels independently from the default color settings.
Key Benefits:
Visual Clarity: Easily identify important levels on the chart.
Dynamic Updates: Levels adjust as new price data comes in, providing relevant and up-to-date information.
Customization: Tailor the appearance and behavior of the support and resistance markings to fit your trading style.
This feature enhances your chart analysis by clearly marking critical levels and events, making it easier to spot potential trading opportunities.
Explanation of the Simple Moving Averages (SMA) Functionality
Simple Moving Averages (SMAs) are technical analysis tools used to smooth out price data and identify market trends. This part of the code allows you to add two SMAs to the chart with customizable settings.
Configuration Parameters:
Show SMA 1 and SMA 2: Enables or disables the display of each moving average. You can choose to show SMA 1, SMA 2, or both on your chart.
SMA Length: Defines the number of periods used to calculate each SMA. For example, a length of 14 for SMA 1 and 50 for SMA 2. A longer length smooths the line more, while a shorter length follows price movements more closely.
SMA Source: Sets which price data (e.g., closing price) is used to calculate the SMA.
Color and Width of SMA: Allows you to customize the color and width of each SMA line to fit your visual preference or to clearly distinguish between different SMAs on the chart.
SMA Style: Provides options to change the line style of the SMA to solid, dashed, or dotted, so you can personalize the appearance according to your analysis style.
SMA Calculation:
Calculation: The SMA is calculated by averaging the closing prices (or selected source) over the specified number of periods. This helps to smooth out daily price fluctuations and reveals the overall trend.
Visualization:
Plot for SMA 1 and SMA 2: Draws the SMA lines on the chart according to the specified settings. If you choose to hide an SMA, it will not appear on the chart.
Line Style: The line is drawn according to the selected style (solid, dashed, or dotted), and you can adjust the thickness and color to suit your visual needs.
Key Benefits:
Trend Clarity: SMAs help smooth out price movement and allow you to see the general trend in the market.
Customization: You can adjust the length, color, thickness, and style of the lines to fit your analysis and visual preferences.
Facilitates Analysis: SMAs can be used to identify crossings and important trading signals, such as when a short-term SMA crosses above or below a longer-term SMA.
This functionality provides you with powerful tools to adjust and customize how moving averages are presented on your charts, making it easier to identify trends and signals in the market.
Thank you for exploring the features of our indicator! We hope you find the customization options and tools provided, including the Simple Moving Averages, valuable for your trading analysis. If you have any questions or need further assistance, please feel free to reach out.
We invite you to try out the complete PatternPulse indicator to experience its full range of functionalities and see how it can enhance your trading strategies. Your feedback is always appreciated!
Happy trading!
Volume IQOverview
Volume IQ is meant to be the ‘intelligent volume distribution analyzer’ that takes much of the work of interpreting volume profiles off of your shoulders. It attempts to ‘do the technical analysis’ of volume data for you, with its capstone feature being "Trading Action Zones": ranges on the chart whose placement are determined by high and low volume nodes and sentiment analysis, and their adapting range affected by current volatility. These zones are meant to offer practical levels for potential entries, exits, targets, and stops while trading. These zones are the cherry on top of other useful and original features like visuals for grouping areas of similar buy/sell bias.
Originality and Usefulness
Volume IQ stands out for its originality by offering a data-driven approach to interpreting volume profiles and presenting its analysis on the chart. Unlike traditional volume profiles, Volume IQ automates much of the volume analysis process, helping traders identify potential opportunities and key trading areas with minimal effort. Its unique "Trading Action Zones" leverage high and low volume nodes, sentiment analysis, and current volatility to highlight practical levels for entries, exits, targets, and stops. Additionally, the tool provides grouped bias visuals, gradient coloring, and flexible customization options, allowing traders to gain a clearer understanding of market sentiment and structure. By simplifying complex volume data into actionable insights, Volume IQ provides a valuable and efficient resource for charting on TradingView.
The ‘Capstone’ Feature:
Trading ‘Action Zones’: Potential areas to take trading action based on built-in interpretations of high-volume nodes, low-volume nodes, and overarching chart sentiment (whose calculation is described below), and their interplay. Categorized by tiers - with Tier 2 zones intended as potential entry areas, and Tier 1 zones for exits or adds. These zones can also present logical areas to consider targets and stops, for example placing a stop loss in a Tier 1 sell zone below price where there is a series of low-volume nodes and potentially not much support. These zones help you quickly identify potential areas on the chart to ‘take action’.
Key Features:
Level and Block Biases: By estimating buying and selling volume, as well as leveraging intrabar data, the Volume IQ profile provides detailed buy/sell sentiment at individual price levels. It then groups together consecutive price levels with the same bias into what we call ‘Block Biases’ making it easy to determine larger price areas with distinct buying or selling pressure.
Chart Sentiment Analysis: A ‘continuously optimizing algorithm’ configured to find high average runups after a sentiment switch powers what we call ‘bias guidelines’ which border the Volume IQ profile and influence the determination of Action Zones. This algorithm is based on comparing many combinations of volume-weighted trends, largely based on smoothed volume weighted moving averages, on each bar, to ensure that the approach with the highest average runup amongst the combinations is used.
Zones of Control: A gradient-coloring approach to the profile highlighst areas of influence at a glance, making it easier to focus on key price levels.
Broad Compatibility: Works across all chart timeframes and market types - so long as volume data and OHLC candle data is available.
Highly Customizable: Configure features to align with your trading preferences and workflow. Show them all, or pick and choose the ones you want.
Settings
Use a Color Theme: Toggle between our predefined color themes or customize your own.
Style: Select your preferred color theme (e.g., "TI Fusion").
Colors (When Not Using a Theme): Customize primary, secondary, and background colors for your own non-theme styling.
Gradient Coloring: Enable or disable gradient shading of the profile for visual enhancement of zones with high control and low control.
Action Zones: Turn trading action zones on or off to highlight key trading levels.
Time Staggering: Enabling this option will simply ‘stagger’ the display of action zones horizontally. Zones closer to price will be placed leftwards, and as they become more distant from price, they will be ‘staggered out’ rightwards, to give an intuitive feel for the time it may take for price to reach these zones.
Tier Labels: Enable or disable the ‘tier labels’ (1 square for Tier 1, 2 squares for Tier 2) for action zones.
Bias Blocks: Toggle the display of grouped buy/sell bias blocks.
Extend: Choose how the bias blocks are displayed: “Left” to stretch them from the end to the beginning of the histogram, “Right” to extend from the end outwards, and “Across” to extend from the beginning to outwards past the end, enveloping the bias and volume count labels.
Opacity: Adjust the transparency level of bias blocks (0–100).
Level Bias Labels: Turn on/off labels for individual price level biases.
Bias Guidelines: Enable the visual guidelines for bias levels which border the profile.
Volume Counts: Toggle volume count labels for each of the profile’s price levels.
Split Buy/Sell Volume: Enable separate display of buy and sell volume for each level (buy volume on the left, sell volume on the right).
Font Size: Adjust the font size for these labels.
Histogram Display: Choose the display option for the histogram bars of the profile themselves: "Full View" will display the profile, and “None” will hide it.
BG Shading Logic: Adjust the background shading logic for the display: “Neutral” will use the ‘Neutral Color’ from your color theme to put some emphasis around high and low volume nodes, while “None” will remove any background shading.
Detail: This option allows you to set the granularity of the volume data used: “Bar Data” will simply use the bar data from the chart timeframe, while “Intrabar Data” will attempt to use bar data from a lower timeframe. Please note that using intrabar data may not be available with your TradingView subscription on some timeframes, and also that using intrabar data may increase calculation time.
Data Request: Choose the lookback for the volume distribution: "Long-term" will look back 500 bars, and “Short-Term” will halve this.
# of Levels: Specify the number of levels/rows to display for visualizing the distribution.
IQ Zones [TradingIQ]Hey Traders!
Introducing "IQ Zones".
"IQ Zones" is an indicator that combines support and resistance identification with volume, the "value area" of a candlestick to be exact. IQ Zones identifies turning points in the market; however, the candlestick high or low that formed the key turning point is not necessarily distinguished as the support/resistance area. Instead, the script looks into the bar at lower timeframes and calculates the value area of the candlestick that formed the support or resistance level. Therefore, any lines protruding from a candlestick reflect the value area of that candlestick. These levels (value area high and value area low) are marked on the candlestick as a support/resistance level. If the level formed on high volume it's marked as an "IQ Zone".
Additionally, IQ Zones presents a heat map to show volume intensity at nearby price areas. The heatmap is a product of the Volume Profile (IQ Profile) located on the right of the chart.
The IQ Profile is a segmented volume profile. Recent price is split into fifths (customizable), and individual volume profiles are calculated for all segmented price areas. Price is split into more than one segment to avoid a situation where volume in a ranging price zone far surpasses all other recent price areas - creating an "unusable" volume profile that doesn't offer helpful insights. If desired, you can set the segmenting option to "1" to calculate one unified volume profile for the entire price range.
The image above shows IQ Zones in action!
Core Features of IQ Zones
Value Area Support and Resistance Levels
Segmented volume profile for the recent trading period
Volume intensity heatmap
Support and resistance levels in high volume intensity may be more significant as price stoppers
The image above explains the labels marked along the y-axis of the IQ Profile.
The "more green" a price area/label is, the higher the volume intensity at the marked support/resistance area.
The image above further explains line lines protruding from the IQ Profile.
For this example, the value area of the candlestick (where most trading action occurred) is quite far from the high price of the candlestick that formed a resistance level! Using the value area of a candlestick that marks a key turning point to draw support/resistance offers insight into where the majority of trading action took place when the support/resistance level was forming!
Additionally, you can hover your mouse over the IQ Zone labels (triangles pointing up or down) to see the prices of the value area for the support/resistance level, including the total buying volume and total selling volume at the price area!
The image above further explains the IQ Profile!
You can segment the recent price area anywhere from 1 - 15 times.
The image above further explains IQ Zones and the IQ Profile!
That will be all for this indicator - a fun project to share with the community.
Thank you!
TradingIQ - OrderFlow IQIntroducing “OrderFlow IQ”
OrderFlow IQ is an all-in-one order-flow and volume-profiling suite crafted to bring true market microstructure to your TradingView charts. It bundles footprints, per-bar and intra-bar delta analytics, class-based delta tracking, adaptive volume profiles, bubble-style trade tapes, live time-and-sales feeds, cumulative-volume fight meters, iceberg detection, and more—all driven by a single, user-friendly interface.
Features
The list below details an ever=expanding list of the indicators capabilities; more to come in the future!
Tick-based Footprints
Imbalance and stacked imbalance detection
Tick-based chronicled volume profile
Delta classification (small order, medium order, and block order delta)
Tick-based order flow bubble tape
Live order feed with total buying volume against total selling volume
Tick-based CVD
Iceberg order detection
Delta class lines
Tick-based bar statistics
Key Components and Their Functions
Data Granularity
• 1-Tick / 1-Second / 1-Minute modes let you choose the resolution of every calculation. On true tick charts you get genuine tick-by-tick precision; on second charts you see every intra-second print; on anything else it falls back to minute bars.
Footprint Engine
Bid vs Ask Volume Columns – Each candle is sliced into tick-level price rows showing buy-volume, sell-volume, total volume, delta and delta%.
CVD-Level Columns – Optionally color each row by net cumulative delta instead of raw volume to spotlight buying or selling pressure trends.
Imbalance Detection – Highlight rows where one side exceeds your % threshold, with “stacked” imbalances calling out multi-row alignment ahead of potential breaks.
Value Area & POC – Automatically compute and draw the 70% value area (VAH/VAL) and mark the Point of Control per session or any chosen timeframe.
Footprint
The image above shows the volume profiling data calculated for each row across the footprint engine.
Delta: Shows the net difference between buying and selling
Delta Percentage: Calculates delta as a percentage of total volume
Total Volume: The total volume at the price block
Buy Volume: The total buying volume at the price block
Sell Volume: The total selling volume at the price block
Additionally, you can select to only show buying volume and selling volume at each price block, as shown in the image above.
POC
The image above shows the visuals used to mark the POC of the footprint. The POC is marked yellow by default; the color can be changed in the settings.
Value Area
The image above shows the visuals used to mark the value area of the footprint.
Imbalance Detection
The image above shows the Footprint Engine detecting and marking buying/selling imbalances.
Stacked Imbalances
The image above shows the Footprint Engine detecting and marking stacked imbalances. Stacked imbalances are shown as consecutive, small blocks to the right of the footprint.
CVD Levels
The image above shows the footprint engine calculating CVD across the footprint, rather than net delta that resets bar by bar. Traders can enable the "Use CVD Levels" setting to have net delta persist across price bars, allowing traders to see the net CVD across various price blocks as the footprint develops.
Delta Class Statistics
With the inclusion of tick volume, The Delta Class Statistics component of the indicator classifies volume delta by order size to give traders detailed insights into whether small players are buying/selling and whether big players are buying/selling.
The image above shows a full view of the Delta Class Statistics feature.
The image above further explains the Delta Class Statistics view.
Orders are distributed (classified) across various order size amounts. From here, a rolling CVD is calculated across each order size. This feature gives traders detailed insights into whether big money is buying/selling (big player sentiment) and whether small money is buying/selling (small player sentiment).
Analysis
The image above shows a net-negative CVD for the session for both small orders (small money) and big orders (big money), while "medium" sized orders are currently at a net-positive CVD.
Consequently, sentiment for big players is bearish.
Additionally, small triangles are printed alongside each Delta Class box for each bar. You can hover over these labels with your cursor to see the net delta for the bar for each order size.
Bar Delta Statistics
With the inclusion of tick data, OrderFlow IQ is designed to generate detailed tick-based bar statistics for each candlestick.
The image above shows the feature in action.
Metrics
Volume: Total volume for the bar
Bar VWAP: The individual bar's VWAP
Delta: Net delta for the bar
Delta %: Delta % of the bar
Max Delta: The maximum positive delta achieved during the bar
Min Delta: The lowest negative delta achieved during the bar
CVD: Cumulative volume delta measurement by the bar
Buy Volume: Total buying volume for the bar
Sell Volume: Total selling volume for the bar
Iceberg Detection (Tick-Data Only)
An Iceberg Order is a type of large trading order that is broken up into much smaller visible portions. Only a small part of the order is displayed in the public order book at any given time, while the rest is hidden (like an iceberg where only the tip is above water).
Why are Iceberg Orders Important?
Minimizing Market Impact
If a trader were to post a 10,000-share sell order openly, the market would immediately react:
Buyers might panic, thinking there's a rush to sell.
Sellers could undercut the price aggressively.
This would likely drive the price down before the large order even finishes executing.
By revealing only a small portion at a time, Iceberg orders help avoid spooking the market and allow the trader to sell closer to the original price.
Hiding Trading Intentions
Markets are highly sensitive to order flow — the balance of buying and selling pressure.
If competitors, market makers, or algorithmic traders see a massive order, they might:
Front-run it (selling before it completes to profit from the expected price drop).
Reassess their own models about supply/demand imbalances.
Iceberg orders protect against this by masking true supply or demand.
Our Iceberg Detection Model
Using a proprietary iceberg order detection algorithm, OrderFlow IQ is capable of detecting/alerting iceberg orders when they occur.
The image above shows the Iceberg Detector in action.
When an iceberg order is identified, the size of the order in the quote currency, price of execution, and number of executions will be displayed.
It's important to set alerts for this feature, as iceberg orders aren't frequent and are easy to miss when away from the chart.
IQ Volume Profile (Chronicled Volume Profile)
OrderFlow IQ generates a Chronicled Volume Profile to give traders detailed insights into net delta by price level, but also historical net delta by price level.
The image above shows the feature in action. While the chronicled volume profile is seemingly a normal volume profile, the narrow-lines across the chronicle profile show historical min/max delta at each price level.
The image above exemplifies the feature.
The wide price blocks show the current net delta at each price area, while the small lines (with a circle at the end) show historical min/max delta at the price level.
This tool allows traders to see if buying/selling always dominated a price level, or if control of the price level changed hands between buyers/sellers throughout development of the profile.
Additionally, traders can hover over the small circles on the profile with their cursor to see the detailed delta statistics at each price area. The statistics will show the minimum delta at the price area, maximum delta, and the live change in delta.
Order Feed
OrderFlow IQ is capable of generating a live order feed with various metrics to assist real time orderflow traders in their analysis.
The image above exemplifies the feature.
Bid/Ask: The bid price and ask price of the current bar
Buys | Price: The size of a buy order and price of execution
Sells | Price: The size of a sell order and price of execution
▴ Vol: Cumulative buying volume (in quote currency) for the feed
▾ Vol: Cumulative selling volume (in quote currency) for the feed
Speed of tape: The average speed between each order fill
OrderFlow Bubble Tape
OrderFlow IQ also displays a traditional orderflow indicator, also known as OrderFlow Bubble Tape.
The image above shows the feature in action.
Orderflow Bubble Tape is a visual tool that shows recent market trades ("tape") as bubbles, where each bubble represents a trade.
The size of each bubble indicates the trade size (volume), and the color shows whether the trade was a buy (aggressive at the ask) or sell (aggressive at the bid).
Instead of showing trades as plain text (like a traditional tape), the bubble format makes it easier to spot bursts of aggressive buying or selling visually.
Clusters of large, fast bubbles in one color suggest momentum or imbalances in order flow, often signaling short-term price pressure.
Traders use Bubble Tape to quickly read supply/demand dynamics, identify hidden buyers/sellers (like iceberg orders), and anticipate short-term price moves.
Blue Bubble = Buy
Red Bubble = Sell
The larger the bubble, the larger the order. Traders can hover over each bubble with their cursor to see the exact size of the order.
Delta Class Lines
OrderFlow IQ shows Live Delta Class Lines grouped by order size buckets:
The blue line shows delta coming only from very large orders (100K–10B in size).
The red line shows delta coming from medium-large orders (50K–100K size).
The green line shows delta from small to medium orders (0–50K size).
Each line is the cumulative net delta for its class — meaning it is adding the buy and sell imbalances only from trades of that size class, live as trades occur.
For example, when a 30K-sized aggressive buy hits, it adds to the green line; if a 70K-sized sell hits, it subtracts from the red line.
The number next to each label is the current net delta value for that class, telling you whether buyers or sellers are dominating at that order size.
• Three Custom Dollar Brackets – Define “small,” “mid,” and “block” trade-size ranges (e.g., 0–50 K, 50 K–100 K, > 100 K).
• Live Streaming Lines – While a bar is forming, watch real-time totals for each bracket plotted as vertical columns or stair-step lines on the chart edge.
CVD
OrderFlow IQ also displays CVD as either candles or a line.
The image above shows the candles visualization for CVD. CVD can be calculated using tick data, 1-second bars, or 1-minute bars. The higher the granularity the more accurate the measurement.
More Features To Come
New features and calculations will be added to OrderFlow IQ based on community feedback, so feel free to share any requests you might have!
Summary
OrderFlow IQ brings a full suite of order-flow analytics into one Pine Script: footprints, delta analytics, dollar-bracket classes, adaptive profiles, bubble tapes, live feeds, CVD meters, and iceberg scans. Its unified Data Granularity switch and Preset System let you toggle entire dashboards with a click—scalpers, intraday traders, and long-term analysts alike can dial in the exact microstructure view they need without switching scripts. Publish once, share your preset layouts, and your TradingView community gains plug-and-play access to professional-grade order-flow tools—no extra installations or feeds required.
Rolling Point of Control (POC) [AlgoAlpha]Enhance your trading decisions with the Rolling Point of Control (POC) Indicator designed by AlgoAlpha! This powerful tool displays a dynamic Point of Control based on volume or price profiles directly on your chart, providing a vivid depiction of dominant price levels according to historical data. 🌟📈
🚀 Key Features:
Profile Type Selection: Choose between Volume Profile and Price Profile to best suit your analysis needs.
Adjustable Lookback Period: Modify the lookback period to consider more or less historical data for your profile.
Customizable Resolution and Scale: Tailor the resolution and horizontal scale of the profile for precision and clarity.
Trend Analysis Tools: Enable trend analysis with the option to display a weighted moving average of the POC.
Color-Coded Feedback: Utilize color gradients to quickly identify bullish and bearish conditions relative to the POC.
Interactive Visuals: Dynamic rendering of profiles and alerts for crossing events enhances visual feedback and responsiveness.
Multiple Customization Options: Smooth the POC line, toggle profile and fill visibility, and choose custom colors for various elements.
🖥️ How to Use:
🛠 Add the Indicator:
Add the indicator to favorites and customize settings like profile type, lookback period, and resolution to fit your trading style.
📊 Market Analysis:
Monitor the POC line for significant price levels. Use the histogram to understand price distributions and locate major market pivots.
🔔 Alerts Setup:
Enable alerts for price crossing over or under the POC, as well as for trend changes, to stay ahead of market movements without constant chart monitoring.
🛠️ How It Works:
The Rolling POC indicator dynamically calculates the Point of Control either based on volume or price within a user-defined lookback period. It plots a histogram (profile) that highlights the level at which the most trading activity has occurred, helping to identify key support and resistance levels.
Basic Logic Overview:
- Data Compilation: Gathers high, low, and volume (if volume profile selected) data within the lookback period.
- Histogram Calculation: Divides the price range into bins (as specified by resolution), counting hits in each bin to find the most frequented price level.
- POC Identification: The price level with the highest concentration of hits (or volume) is marked as the POC.
- Trend MA (Optional): If enabled, the indicator plots a moving average of the POC for trend analysis.
By integrating the Rolling Point of Control into your charting toolkit, you can significantly enhance your market analysis and potentially increase the accuracy of your trading decisions. Whether you're day trading or looking at longer time frames, this indicator offers a detailed, customizable perspective on market dynamics. 🌍💹
Volume HeatMap With Profile [ChartPrime]The Volume Heatmap with Profile indicator is a tool designed to provide traders with a comprehensive view of market activity through customizable visualizations. This indicator goes beyond traditional volume analysis by offering a range of adjustable parameters and features that enhance analysis of volume and give a cleaner experience when analyzing it.
To get started click the start and end time for the profile.
Key Features:
Extended Calculation: This indicator extends its calculation to the last bar, ensuring that the user has insights into current market dynamics.
Point of Control (POC): Easily identify the price level at which the highest trading activity has occurred, helping the user pinpoint potential reversal points and significant support/resistance zones.
VWAP Point of Control: Display the Volume Weighted Average Price (VWAP) Point of Control, giving the user a clear reference for determining the average price traders are paying and potential price reversals.
Adjustable Colors for Heatmap: Change the heatmap colors to the users preference, allowing the user to match the indicator's appearance to their chart style and personal visual preferences.
Forecasted Zone: This feature allows traders to forecast areas of high activity by providing the option to adjust colors within this zone. This feature assists in identifying potential breakouts or areas where increased trading volume is anticipated.
Volume Profile: Customize the colors of the volume profile to make it distinct and easily distinguishable on the chart.
Adjustable Volume Levels: Specify the number volume levels that are most relevant to your trading strategy.
Adjustable Placement for Volume Profile: Position the volume profile on the chart. Whether the user prefers it on the left, right, or at the center of the chart, this indicator offers placement flexibility.
The ratio of bull vs bear volume is plotted on the outside of the range indicating how bullish or bearish price action is in a given range.
Bull Vs Bear Visible Range VP [Kioseff Trading]Hello!
This Script “Bull vs Bear Visible Range VP” Calculates Bull & Bear Volume Profiles for the Visible Range Alongside a Delta Ladder for the Visible Period!
Features
Volume Profile Anchored to Visible Range
Delta Ladder Anchored to Visible Range
Bull vs Bear Profiles!
Standard Poc and Value Area Lines, in Addition to Separated POCs and Value Area Lines for Bull Profiles and Bear Profiles
Configurable Value Area Target
Curved Profiles
Up to 9999 Profile Rows per Visible Range
Stylistic Options for Profiles
This Script Generates Bull vs. Bear Volume Profiles for the Visible Range!
Up to 9999 Volume Profile Levels (Price Levels) Can Be Calculated for Each Profile, Thanks to the New Polyline Feature, Allowing For Less Aggregation / More Precision of Volume at Price and Volume Delta.
Bull vs Bear Profiles
The Image Above Shows Primary Functionality!
Green Profiles = Buying Volume
Red Profiles = Selling Volume
Bullish & Bearish Pocs for the Visible Range Are Displayable!
Profiles Can Be Anchored on the Left Side for a More Traditional Look.
The indicator is robust enough to calculate on "small price periods", or for a price period spanning your entire chart fully zoomed out!
That’s About It :D
This Indicator Is Part of a Series Titled “Bull vs. Bear” - A Suite of Profile-Like Indicators I Will Be Releasing Over Coming Days. Thanks for Checking This Out!
If You Have Any Suggestions Please Feel Free to Share!
Bollinger Bands Liquidity Cloud [ChartPrime]This indicator overlays a heatmap on the price chart, providing a detailed representation of Bollinger bands' profile. It offers insights into the price's behavior relative to these bands. There are two visualization styles to choose from: the Volume Profile and the Z-Score method.
Features
Volume Profile: This method illustrates how the price interacts with the Bollinger bands based on the traded volume.
Z-Score: In this mode, the indicator samples the real distribution of Z-Scores within a specified window and rescales this distribution to the desired sample size. It then maps the distribution as a heatmap by calculating the corresponding price for each Z-Score sample and representing its weight via color and transparency.
Parameters
Length: The period for the simple moving average that forms the base for the Bollinger bands.
Multiplier: The number of standard deviations from the moving average to plot the upper and lower Bollinger bands.
Main:
Style: Choose between "Volume" and "Z-Score" visual styles.
Sample Size: The size of the bin. Affects the granularity of the heatmap.
Window Size: The lookback window for calculating the heatmap. When set to Z-Score, a value of `0` implies using all available data. It's advisable to either use `0` or the highest practical value when using the Z-Score method.
Lookback: The amount of historical data you want the heatmap to represent on the chart.
Smoothing: Implements sinc smoothing to the distribution. It smoothens out the heatmap to provide a clearer visual representation.
Heat Map Alpha: Controls the transparency of the heatmap. A higher value makes it more opaque, while a lower value makes it more transparent.
Weight Score Overlay: A toggle that, when enabled, displays a letter score (`S`, `A`, `B`, `C`, `D`) inside the heatmap boxes, based on the weight of each data point. The scoring system categorizes each weight into one of these letters using the provided percentile ranks and the median.
Color
Color: Color for high values.
Standard Deviation Color: Color to represent the standard deviation on the Bollinger bands.
Text Color: Determines the color of the letter score inside the heatmap boxes. Adjusting this parameter ensures that the score is visible against the heatmap color.
Usage
Once this indicator is applied to your chart, the heatmap will be overlaid on the price chart, providing a visual representation of the price's behavior in relation to the Bollinger bands. The intensity of the heatmap is directly tied to the price action's intensity, defined by your chosen parameters.
When employing the Volume Profile style, a brighter and more intense area on the heatmap indicates a higher trading volume within that specific price range. On the other hand, if you opt for the Z-Score method, the intensity of the heatmap reflects the Z-Score distribution. Here, a stronger intensity is synonymous with a more frequent occurrence of a specific Z-Score.
For those seeking an added layer of granularity, there's the "Weight Score Overlay" feature. When activated, each box in your heatmap will sport a letter score, ranging from `S` to `D`. This score categorizes the weight of each data point, offering a concise breakdown:
- `S`: Data points with a weight of 1.
- `A`: Weights below 1 but greater than or equal to the 75th percentile rank.
- `B`: Weights under the 75th percentile but at or above the median.
- `C`: Weights beneath the median but surpassing the 25th percentile rank.
- `D`: All that fall below the 25th percentile rank.
This scoring feature augments the heatmap's visual data, facilitating a quicker interpretation of the weight distribution across the dataset.
Further Explanations
Volume Profile
A volume profile is a tool used by traders to visualize the amount of trading volume occurring at specific price levels. This kind of profile provides a deep insight into the market's structure and helps traders identify key areas of support and resistance, based on where the most trading activity took place. The concept behind the volume profile is that the amount of volume at each price level can indicate the potential importance of that price.
In this indicator:
- The volume profile mode creates a visual representation by sampling trading volumes across price levels.
- The representation displays the balance between bullish and bearish volumes at each level, which is further differentiated using a color gradient from `low_color` to `high_color`.
- The volume profile becomes more refined with sinc smoothing, helping to produce a smoother distribution of volumes.
Z-Score and Distribution Resampling
Z-Score, in the context of trading, represents the number of standard deviations a data point (e.g., closing price) is from the mean (average). It’s a measure of how unusual or typical a particular data point is in relation to all the data. In simpler terms, a high Z-Score indicates that the data point is far away from the mean, while a low Z-Score suggests it's close to the mean.
The unique feature of this indicator is that it samples the real distribution of z-scores within a window and then resamples this distribution to fit the desired sample size. This process is termed as "resampling in the context of distribution sampling" . Resampling provides a way to reconstruct and potentially simplify the original distribution of z-scores, making it easier for traders to interpret.
In this indicator:
- Each Z-Score corresponds to a price value on the chart.
- The resampled distribution is then used to display the heatmap, with each Z-Score related price level getting a heatmap box. The weight (or importance) of each box is represented as a combination of color and transparency.
How to Interpret the Z-Score Distribution Visualization:
When interpreting the Z-Score distribution through color and alpha in the visualization, it's vital to understand that you're seeing a representation of how unusual or typical certain data points are without directly viewing the numerical Z-Score values. Here's how you can interpret it:
Intensity of Color: This often corresponds to the distance a particular data point is from the mean.
Lighter shades (closer to `low_color`) typically indicate data points that are more extreme, suggesting overbought or oversold conditions. These could signify potential reversals or significant deviations from the norm.
Darker shades (closer to `high_color`) represent data points closer to the mean, suggesting that the price is relatively typical compared to the historical data within the given window.
Alpha (Transparency): The degree of transparency can indicate the significance or confidence of the observed deviation. More opaque boxes might suggest a stronger or more reliable deviation from the mean, implying that the observed behavior is less likely to be a random occurrence.
More transparent boxes could denote less certainty or a weaker deviation, meaning that the observed price behavior might not be as noteworthy.
- Combining Color and Alpha: By observing both the intensity of color and the level of transparency, you get a richer understanding. For example:
- A light, opaque box could suggest a strong, significant deviation from the mean, potentially signaling an overbought or oversold scenario.
- A dark, transparent box might indicate a weak, insignificant deviation, suggesting the price is behaving typically and is close to its average.
10x Bull Vs. Bear VP Intraday Sessions [Kioseff Trading]Hello!
This script "10x Bull Vs. Bear VP Intraday Sessions" lets the user configure up to 10 session ranges for Bull Vs. Bear volume profiles!
Features
Up To 10 Fixed Ranges!
Volume Profile Anchored to Fixed Range
Delta Ladder Anchored to Range
Bull vs Bear Profiles!
Standard Poc and Value Area Lines, in Addition to Separated POCs and Value Area Lines for Bull Profiles and Bear Profiles
Configurable Value Area Target
Up to 2000 Profile Rows per Visible Range
Stylistic Options for Profiles
This script generates Bull vs. Bear volume profiles for up to 10 fixed ranges!
Up to 2000 volume profile levels (price levels) Can be calculated for each profile, thanks to the new polyline feature, allowing for less aggregation / more precision of volume at price and volume delta.
Bull vs Bear Profiles
The image above shows primary functionality!
Green profiles = buying volume
Red profiles = selling volume
All colors are configurable.
Bullish & bearish POC + value areas for each fixed range are displayable!
That’s about it :D
This indicator is part of a series titled “Bull vs. Bear”.
If you have any suggestions please feel free to share!
Time Profile [QuantVue]The Time Profile indicator provides traders with a comprehensive view of volume and time-based price activity. The indicator combines two essential components into one indicator: the volume profile and the time profile.
The volume profile represents the distribution of trading volume at different price levels over a specified period and is displayed as a circle on the chart.
It provides a visual representation of where the majority of trading volume occurred and often highlights significant support and resistance levels. The volume profile is calculated as the closing price of the highest volume intraday bar, based on the user selected lower time frame.
On the other hand, the time profile focuses on analyzing the time spent at certain price levels. The indicator divides the current bars range into 10 blocks and counts the number of user selected lower time frame closes within each time block.
The block with the most lower time frame closes in it is deemed the time point of control. Traders can use this information to identify time blocks where price movement was most significant.
The time profile is drawn on the Y axis of the current bar to allow for an easy visualization of where price spent most of its time. Historical time profiles are also noted on previous bars with a dash marking the level.
The Time Profile indicator offers several customization options. Traders can adjust the timeframe for the lower time frame data, decide whether to display the time profile, and customize colors for visual clarity.
Additionally, traders can choose to highlight instances where the Volume POC and Time POC align, indicating a strong concentration of volume and price activity.
Don't hesitate to reach out with any questions or concerns.
We hope you enjoy!
Cheers.
Open Interest Profile (OI)- By LeviathanThis script implements the concept of Open Interest Profile, which can help you analyze the activity of traders and identify the price levels where they are opening/closing their positions. This data can serve as a confluence for finding the areas of support and resistance , targets and placing stop losses. OI profiles can be viewed in the ranges of days, weeks, months, Tokyo sessions, London sessions and New York sessions.
A short introduction to Open Interest
Open Interest is a metric that measures the total amount of open derivatives contracts in a specific market at a given time. A valid contract is formed by both a buyer who opens a long position and a seller who opens a short position. This means that OI represents the total value of all open longs and all open shorts, divided by two. For example, if Open Interest is showing a value of $1B, it means that there is $1B worth of long and $1B worth of short contracts currently open/unsettled in a given market.
OI increasing = new long and short contracts are entering the market
OI decreasing = long and short contracts are exiting the market
OI unchanged = the net amount of positions remains the same (no new entries/exits or just a transfer of contracts occurring)
About this indicator
*This script is basically a modified version of my previous "Market Sessions and Volume Profile by @LeviathanCapital" indicator but this time, profiles are generated from Tradingview Open Interest data instead of volume (+ some other changes).
The usual representation of OI shows Open Interest value and its change based on time (for a particular day, time frame or each given candle). This indicator takes the data and plots it in a way where you can see the OI activity (change in OI) based on price levels. To put it simply, instead of observing WHEN (time) positions are entering/exiting the market, you can now see WHERE (price) positions are entering/exiting the market. This is the same concept as when it comes to Volume and Volume profile and therefore, similar strategies and ways of understanding the given data can be applied here. You can even combine the two to gain an edge (eg. high OI increase + Volume Profile showing dominant market selling = possible aggressive shorts taking place)
Green nodes = OI increase
Red nodes = OI decrease
A cluster of large green nodes can be used for support and resistance levels (*trapped traders theory) or targets (lots of liquidations and stop losses above/below), OI Profile gaps can present an objective for the price to fill them (liquidity gaps, imbalances, inefficiencies, etc), and more.
Indicator settings
1. Session/Lookback - Choose the range from where the OI Profile will be generated
2. OI Profile Mode - Mode 1 (shows only OI increase), Mode 2 (shows both OI increase and decrease), Mode 3 (shows OI decrease on left side and OI increase on the right side).
3. Show OI Value Area - Shows the area where most OI activity took place (useful as a range or S/R level )
4. Show Session Box - Shows the box around chosen sessions/lookback
5. Show Profile - Show/hide OI Profile
6. Show Current Session - Show/hide the ongoing session
7. Show Session Labels - Show/hide the text labels for each session
8. Resolution - The higher the value, the more refined a profile is, but fewer profiles are shown on the chart
9. OI Value Area % - Choose the percentage of VA (same as in Volume Profile's VA)
10. Smooth OI Data - Useful for assets that have very large spikes in OI over large bars, helps create better profiles
11. OI Increase - Pick the color of OI increase nodes in the profile
12. OI Decrease - Pick the color of OI decrease nodes in the profile
13. Value Area Box - Pick the color of the Value Area Box
14. Session Box Thickness - Pick the thickness of the lines surrounding the chosen sessions
Advice
The indicator calculates the profile based on candles - the more candles you can show, the better profile will be formed. This means that it's best to view most sessions on timeframes like 15min or lower. The only exception is the Monthly profile, where timeframes above 15min should be used. Just take a few minutes and switch between timeframes and sessions and you will figure out the optimal settings.
This is the first version of Open Interest Profile script so please understand that it will be improved in future updates.
Thank you for your support.
** Some profile generation elements are inspired by @LonesomeTheBlue's volume profile script
Multi-Timeframe Liquidity Zones V6 (Table)Multi-Timeframe Liquidity Zones V6 (Table) Indicator: Functionality and Uses
Overview: The Multi-Timeframe Liquidity Zones V6 (Table) indicator is a technical analysis tool that highlights key volume-based support and resistance levels across multiple timeframes. It leverages volume profile concepts – specifically the Point of Control (POC) and Value Area High/Low (VAH/VAL) – to identify “liquidity zones” where trading activity was heaviest . Unlike a standard single-timeframe volume profile, this indicator compiles data from several timeframes (e.g. monthly, weekly, daily, intraday) and displays the results in a convenient table format on the chart. The goal is to give traders a consolidated view of important price levels (derived from volume concentrations) across different horizons, helping them plan trades with a broader market perspective.
Purpose and Functionality of the Indicator
Multi-Timeframe Analysis: The primary objective of this indicator is to simplify multi-timeframe analysis of volume distribution. Rather than manually checking volume profiles on separate charts for each timeframe, the tool automatically calculates the key levels for each selected timeframe and presents them together. This includes higher-level perspectives (like monthly or weekly volume hotspots) alongside shorter-term levels (daily or hourly), ensuring that traders don’t miss significant zones from any timeframe . By offering a broader perspective on support and resistance levels, multi-timeframe tools help improve risk management and signal confirmation , and this indicator is designed to provide that volume-based perspective at a glance.
Table Format Display: Multi-Timeframe Liquidity Zones V6 (Table) specifically presents the information as a table (as opposed to plotting lines on the chart). Each row in the table typically corresponds to a timeframe (for example, Monthly, Weekly, Daily, 4H, 1H, 30M, 15M), and the columns list the calculated POC, VAH, VAL, and possibly the average volume for that timeframe’s look-back period. By structuring the data in a table, traders can quickly read off the exact price levels of these liquidity zones without having to visually trace lines. This format makes it easy to compare levels across timeframes or note where multiple timeframes’ levels cluster near the same price – a sign of especially strong support/resistance. The indicator uses a user-defined number of bars or length of history for each timeframe to calculate these values (so you can adjust how far back it looks to define the volume profile for each period).
Objective: In summary, the functionality is geared toward identifying high-liquidity price zones across multiple time scales and presenting them clearly. These high-liquidity zones often coincide with areas where price reacts (stalls, reverses, or accelerates) because a lot of trading activity (hence, orders and volume) took place there in the past. The indicator’s objective is to alert the trader to those areas in advance. It effectively answers questions like: “Where are the major volume concentration levels on the 1-hour, daily, and weekly charts right now?” and “Are there overlapping volume-based support/resistance levels from different timeframes around the current price?” By compiling this information, the indicator helps traders incorporate context from multiple timeframes in their decision-making, without needing to flip through numerous charts.
Identifying Liquidity Zones with POC, VAH, and VAL
Liquidity Zones Defined: In market terms, a “liquidity zone” is an area of the chart where a significant amount of trading occurred, meaning high liquidity (many buyers and sellers exchanged volume there). These zones often act as support or resistance because past heavy trading indicates consensus or interest around those price levels. This indicator identifies liquidity zones through volume profile analysis on each timeframe’s recent price action. Essentially, it looks at the distribution of trading volume at different prices over the specified period and finds the value area – the range of prices that encompassed the majority of that volume (commonly around 70% of the total volume ). Within that value area, it pinpoints the Point of Control (POC), which is the single price level that had the highest traded volume (the peak of the volume profile) . The upper and lower boundaries of that high-volume range are marked as Value Area High (VAH) and Value Area Low (VAL) respectively . Together, the VAH and VAL define the liquidity zone where the market spent most of its time and volume, and POC highlights the most traded price in that zone.
• Point of Control (POC): The POC is the price level with the greatest volume traded for the given period. It represents the price at which the most liquidity was exchanged – effectively the market’s “center of gravity” for that timeframe’s trading activity . The indicator calculates the POC for each selected timeframe by scanning the volume at each price; the price with maximum volume is flagged as that timeframe’s POC. In the table, the POC might be highlighted or listed as a key level (sometimes traders color-code it or mark it for emphasis). Because so many positions were opened or closed at the POC, it often serves as a strong support/resistance. For example, if price falls to a major POC from above, traders expect buyers may step in there (since it was a popular buy/sell level historically), potentially causing a bounce. Conversely, if price breaks through a POC decisively, it may signal a significant shift in market acceptance.
• Value Area High (VAH) and Low (VAL): The VAH and VAL are the price boundaries of the value area, which is typically defined to contain about 70% of the total traded volume for the period . In other words, between VAH and VAL is where the “bulk” of trading occurred, and outside this range is where relatively less volume traded. The indicator derives VAH/VAL by accumulating volume from the highest-volume price (POC) outward until ~70% of volume is covered (this is a common method for volume profile value area). VAH is the top of this high-volume region and VAL is the bottom. These levels are important because they often act like support/resistance boundaries: when price is inside the value area, it’s in a high-liquidity zone and tends to oscillate between VAH and VAL; when price moves above VAH or below VAL, it’s leaving the high-volume zone, which can indicate a potential trend or imbalance (price entering a lower-liquidity area where it might move faster until finding the next liquidity zone). Traders watch VAH/VAL for signs of rejection or acceptance: for instance, a price rally that falters at VAH suggests that level is acting as resistance (sellers defending that high-volume area), whereas if price pushes above VAH, it may continue until the next timeframe’s zone or until it finds new interest. The Multi-Timeframe Liquidity Zones V6 indicator gives the VAH and VAL for each timeframe, essentially mapping out the upper and lower bounds of key liquidity zones at those scales.
How the Indicator Identifies These: Under the hood, the indicator likely uses historical price and volume data for each timeframe’s lookback window. For each timeframe (say the last 20 weekly bars for a weekly profile, last 100 daily bars for a daily profile, etc.), it constructs a volume profile (a histogram of volume at each price). From that distribution, it finds the POC (highest volume bin) and calculates VAH/VAL around it. The output is a set of numbers (price levels) that mark where those zones lie. In practice, if using the Lines version of this indicator, those levels are drawn as horizontal lines on the chart and labeled by timeframe (e.g., a line at 1.2345 labeled “D POC” for Daily POC) . In the Table version, those values are instead listed in text form. Either way, the identification process is the same – it’s finding the high-volume price regions on each timeframe and calling them out. By doing this for multiple timeframes concurrently, the indicator reveals how these liquidity zones from different periods relate to each other. For example, you might discover that a daily-chart value area overlaps with a weekly-chart POC, creating a particularly strong zone of interest. This kind of insight is hard to get from a single timeframe analysis alone.
Volume Profile Data Across Multiple Timeframes
Multiple Timeframes in One View: One of the biggest advantages of this indicator is the ability to see volume profile information from various timeframes side by side. Traders often perform multiple timeframe analysis to get a fuller picture — for instance, checking monthly or weekly levels for long-term context while planning a trade on a 4-hour chart. This indicator automates that process for volume-based levels. The table will typically list each chosen timeframe (which could be preset or user-selected). For each timeframe, you get the POC, VAH, VAL, and possibly an average volume metric. The “average volume” likely refers to the average volume per bar or the average volume traded over the profile’s duration for that timeframe, which gives a sense of how significant that period’s activity is. For example, a weekly profile might show an average volume of say 500k per week, versus a daily profile average of 80k per day – indicating the scale of trading on weekly vs daily. High average volume on a timeframe means its liquidity zones were formed with a lot of participation, possibly making them more reliable support/resistance. By comparing these, traders can gauge which timeframes had unusually high or low activity recently. The table format makes such comparisons straightforward.
Identification of Confluence: Because all the data is presented together, traders can quickly spot confluence or overlaps between timeframes. If two different timeframes show liquidity zones at similar price levels, that price becomes extremely noteworthy. For instance, suppose the indicator shows: a 1-hour POC at 1.1300, a 4-hour VAL at 1.1280, and a daily VAL at 1.1290. These are all in a tight range – effectively indicating a multi-timeframe liquidity zone around 1.1280–1.1300. A trader seeing this cluster in the table will recognize that as a strong support area, since multiple profiles from intraday to daily all suggest heavy trading interest there. Similarly, overlaps of VAH (resistance zone) from different timeframes could signal a strong ceiling. The multi-timeframe view prevents a trader from, say, going long into a major weekly POC above, or shorting when there’s a huge monthly value-area low just below – situations where awareness of higher timeframe volume structure can make the difference between a good and bad trade.
User Customization: The indicator is flexible in that you can typically adjust which timeframes to include and how many bars to use for each timeframe’s calculation. For example, one might configure it to calculate monthly levels using the past 12 monthly bars (1 year of data), weekly levels using the past 20 weeks, daily using 100 days, etc., depending on preference. By tuning the “bars count” or period length , the trader can focus on recent liquidity zones or incorporate more history if desired. Shorter lookback might catch more recent shifts in volume distribution (important if the market structure changed recently), while longer lookback gives more established levels. This customization ensures the indicator’s output can be tailored to different trading styles (short-term vs swing vs long-term investing). Regardless of settings, the multi-timeframe table allows simultaneous visibility of the chosen timeframes’ volume landscape. This comprehensive view is the core strength: it consolidates data that normally requires flipping through multiple charts.
Using the Liquidity Zones Data for Trading Decisions
Traders can use the information from the MTF Liquidity Zones V6 (Table) indicator in several practical ways to enhance their decision-making:
• Identify Support and Resistance: Each liquidity zone acts as a potential support or resistance area. For example, if the table shows a daily VAH at a certain level above the current price, that level might serve as resistance if the price rallies up to it (since it marks the top of a high-volume region where sellers might step in). Conversely, a weekly VAL below current price could act as support on a dip. By noting these levels in the table, a trader planning an entry or exit can anticipate where the price might stall or reverse. Essentially, you get a map of high-interest price levels from different timeframes, which you can mark on your trading chart for guidance.
• Plan Entries and Exits Around Key Levels: Many traders incorporate volume profile levels into their strategies, for instance: buying near VAL (betting that the value area will hold and price will revert upward), or selling/shorting near VAH (expecting the top of value to hold as resistance), or trading breakouts when price moves outside the value area. With the multi-timeframe table, one can refine these tactics by also considering higher timeframe levels. Suppose you see that on the 1-hour chart the price is just above its 1H POC, but the table indicates that just slightly above, there’s also the daily POC. You might delay a long entry until price clears that daily POC, because that could be a stronger intraday barrier. Or if you intend to take profit on a long trade, you might choose a target just below a weekly VAH since price may struggle to climb past that on the first attempt. The indicator thus acts as a guide for precision in entry/exit decisions, aligning them with where liquidity is high.
• Gauge Trend Strength and Directional Bias: By observing where current price is relative to these volume zones, traders can infer certain market conditions. For instance, if price is trading above the VAH of multiple timeframes’ value areas, it suggests the market is in a more bullish or overextended territory (price accepted above prior value), whereas if price is below multiple VALs, it’s in bearish or undervalued territory relative to recent history. If the price stays around a POC, it indicates consolidation or equilibrium (market comfortable at that price). Traders can use this context for bias – e.g., if price is above the weekly VAH, you might lean bullish but watch for potential pullbacks to that VAH level (now a support). If price is below the monthly VAL, you might avoid longs until it re-enters that value area. In essence, the liquidity zones provide context of value vs. price: is price trading within the high-volume areas (implying range-bound behavior) or outside them (implying a breakout or trending move)? This can prevent chasing trades at poor locations.
• Combine with Other Indicators/Analysis: It’s generally advised to not use any single indicator in isolation, and this holds true here. The liquidity zones from this indicator are best used alongside price action or other technical signals for confirmation . For example, if a bullish candlestick reversal pattern forms right at a confluence of a 4H VAL and Daily POC, that’s a stronger buy signal than the pattern alone. Or if an oscillator shows overbought exactly as price hits a weekly VAH, it adds conviction to a possible short. The indicator’s table basically gives you a shortlist of critical price levels; you can then watch how price behaves at those levels (via candlesticks, order flow, etc.) to make the final trade decision. Traders might set alerts for when price approaches one of the listed levels, or they might drop down to a lower timeframe to fine-tune an entry once a key zone is reached. By integrating this volume-based insight with trend analysis, chart patterns, or momentum indicators, one can make more informed and high-probability decisions rather than trading in the dark.
• Risk Management and Stop Placement: High-liquidity zones can also inform stop-loss placement. Ideally, you want your stop on the other side of a strong support/resistance. If you go long near a VAL, you might place your stop just below the VAL (since a move beyond that suggests the high-volume zone didn’t hold). If you short near a VAH, a stop just above the VAH or POC could be logical. Moreover, if multiple timeframes show overlapping zones, a stop beyond all of them could be even safer (albeit at the cost of a wider stop). The indicator helps identify those spots. It also warns you of where not to put a stop – for example, placing a stop-loss right at a POC might be unwise because price could gravitate to that POC repeatedly (due to its magnetic effect as a high-volume price). Instead, a trader might choose a stop beyond the far side of the value area. By using the table’s information, you can align your risk management with areas of high liquidity, reducing the chance of being whipsawed by normal volatility around heavily traded levels .
Benefits of the Multi-Timeframe Liquidity Zones Indicator
Using the Multi-Timeframe Liquidity Zones V6 (Table) indicator offers several key benefits for traders, ultimately aiming to streamline analysis and improve decision quality:
• Consolidated Key Levels: It provides a clear, consolidated view of crucial volume-driven levels from multiple timeframes all at once . This saves time and ensures you always account for major support/resistance zones that come from higher or lower timeframe volume clusters. You won’t accidentally overlook a significant weekly level while focused on a 15-minute chart, for example.
• Enhanced Multi-Timeframe Insight: By aligning information from long-term and short-term periods, the indicator helps traders see the “bigger picture” while still operating on their preferred timeframe. This multi-scale awareness can improve trade timing and confidence. You’re effectively doing multi-timeframe analysis with volume profiles in an efficient manner, which can confirm or caution your trade ideas (e.g., a trend looks strong on the 1H, but the table shows a huge monthly VAH just overhead – a reason to be cautious or take profit early).
• Improved Decision Making and Precision: Knowing where liquidity zones lie allows for more precise entries, exits, and stop placements. Traders can make informed decisions such as waiting for a pullback to a value area before entering, or taking profits before price hits a major POC from a higher timeframe. These decisions are grounded in objectively important price levels, potentially leading to higher probability trades and better risk-reward setups. It essentially enhances your strategy by adding a layer of volume context – you’re trading with an awareness of where the market’s interest is heaviest.
• Volume-Based Confirmation: Price alone can sometimes be deceptive, but volume tells the true story of participation. The liquidity zones indicator provides volume-based confirmation of support/resistance. If a price level is identified by this tool, it’s because significant volume happened there – adding weight to that level’s importance. This can help filter out false support/resistance levels that aren’t backed by volume. In other words, it highlights high-quality levels that many traders (and possibly institutions) have shown interest in.
• Adaptable to Different Trading Styles: Whether one is a scalper looking at intraday (15M, 5M charts) or a swing trader focusing on daily/weekly, the indicator can be configured to those needs. You choose which timeframes and how much data to consider. This means the concept of liquidity zones can be applied universally – from spotting intraday pivot levels with volume, to seeing long-term value zones on an investment. The consistent methodology of POC/VAH/VAL across scales provides a common framework to analyze any market and timeframe.
• Informed Risk Management: As discussed, the knowledge of multi-timeframe volume zones aids in risk management. By placing stops beyond major liquidity areas or avoiding trades that run into strong volume walls, traders can reduce the likelihood of whipsaw losses. It’s an extra layer of defense to ensure your trade plan accounts for where the market has historically found lots of interest (hence likely friction). This level of informed planning can be the difference between a well-managed trade and an avoidable loss.
In conclusion, the Multi-Timeframe Liquidity Zones V6 (Table) indicator serves as a powerful analytical aid, giving traders a structured view of where price is likely to encounter support or resistance based on volume concentrations across timeframes. Its functionality centers on identifying those liquidity zones (via POC, VAH, VAL) and presenting them in an easy-to-read format, while its ultimate purpose is to help traders make more informed decisions. By integrating this tool into their workflow, traders can more confidently navigate price action, knowing the objective volume-based landmarks that lie ahead. Remember that while these volume levels often coincide with strong S/R zones, it’s best to use them in conjunction with other technical or fundamental analysis for confirmation . When used appropriately, the indicator can streamline multi-timeframe analysis and enhance your overall trading strategy , giving you an edge in identifying where the market’s liquidity (and opportunity) resides.
Open Interest Profile [Fixed Range] - By LeviathanThis script generates an aggregated Open Interest profile for any user-selected range and provides several other features and tools, such as OI Delta Profile, Positive Delta Levels, OI Heatmap, Range Levels, OIWAP, POC and much more.
The indicator will help you find levels of interest based on where other market participants are opening and closing their positions. This provides a deeper insight into market activity and serves as a foundation for various different trading strategies (trapped traders, supply and demand, support and resistance, liquidity gaps, imbalances,liquidation levels, etc). Additionally, this indicator can be used in conjunction with other tools such as Volume Profile.
Open Interest (OI) is a key metric in derivatives markets that refers to the total number of unsettled or open contracts. A contract is a mutual agreement between two parties to buy or sell an underlying asset at a predetermined price. Each contract consists of a long side and a short side, with one party consenting to buy (long) and the other agreeing to sell (short). The party holding the long position will profit from an increase in the asset's price, while the one holding the short position will profit from the price decline. Every long position opened requires a corresponding short position by another market participant, and vice versa. Although there might be an imbalance in the number of accounts or traders holding long and short contracts, the net value of positions held on each side remains balanced at a 1:1 ratio. For instance, an Open Interest of 100 BTC implies that there are currently 100 BTC worth of longs and 100 BTC worth of shorts open in the market. There might be more traders on one side holding smaller positions, and fewer on the other side with larger positions, but the net value of positions on both sides is equivalent - 100 BTC in longs and 100 BTC in shorts (1:1). Consider a scenario where a trader decides to open a long position for 1 BTC at a price of $30k. For this long order to be executed, a counterparty must take the opposite side of the contract by placing a short order for 1 BTC at the same price of $30k. When both long and short orders are matched and executed, the Open Interest increases by 1 BTC, indicating the introduction of this new contract to the market.
The meaning of fluctuations in Open Interest:
- OI Increase - signifies new positions entering the market (both longs and shorts).
- OI Decrease - indicates positions exiting the market (both longs and shorts).
- OI Flat - represents no change in open positions due to low activity or a large number of contract transfers (contracts changing hands instead of being closed).
Typically, we monitor Open Interest in the form of its running value, either on a chart or through OI Delta histograms that depict the net change in OI for each price bar. This indicator enhances Open Interest analysis by illustrating the distribution of changes in OI on the price axis rather than the time axis (akin to Volume Profiles). While Volume Profile displays the volume that occurred at a given price level, the Open Interest Profile offers insight into where traders were opening and closing their positions.
How to use the indicator?
1. Add the script to your chart
2. A prompt will appear, asking you to select the “Start Time” (start of the range) and the “End Time” (end of the range) by clicking anywhere on your chart.
3. Within a few seconds, a profile will be generated. If you wish to alter the selected range, you can drag the "Start Time" and "End Time" markers accordingly.
4. Enjoy the script and feel free to explore all the settings.
To learn more about each input in indicator settings, please read the provided tooltips. These can be accessed by hovering over or clicking on the ( i ) symbol next to the input.
Real-Time HTF Volume Footprint [BigBeluga]Real-time HTF Volume Footprint Profile is designed to provide a comprehensive view of higher timeframe volume profiles on your current chart. It overlays critical volume information from larger timeframes (like daily, weekly, or monthly) onto lower timeframe charts, helping you spot significant levels where volume is concentrated, acting as potential support or resistance.
🔵 Key Features:
HTF High and Low Zones: The indicator highlights the high and low of the chosen higher timeframe with clear zones, marking them with boxes. These zones help you see the broader market structure at a glance.
Volume Profile within HTF Range: Each higher timeframe range displays a volume profile, showing the distribution of volume at each price level. The most-traded price is highlighted in blue, known as the Point of Control (POC), indicating the price level with the highest activity.
Dynamic POC Option: Activate Dynamic POC to observe how the Point of Control shifts over time, giving insight into changing market interests and potential price direction.
Timeframe Flexibility: Select from daily, weekly, and monthly ranges (and more) to overlay their footprint profiles on your lower timeframe chart. This helps you tailor the indicator to the trading horizon that suits your strategy.
Info Table: Table shows a traders which timeframe is selected with last high and low of the selected timeframe
Visual Clarity with Custom Colors: The indicator uses subtle fills and distinct colors to ensure volume profile data integrates seamlessly into your chart without overwhelming other indicators or price data.
🔵 When to Use:
The HTF Volume Footprint Profile is essential for traders who want to bridge the gap between high-timeframe and intraday analysis. By visualizing HTF volume distribution on lower timeframes, this tool helps you:
Spot potential liquidity zones where price might react.
Identify support and resistance levels within HTF ranges.
Monitor PoC shifts that indicate changes in market behavior.
Track how current price aligns with significant volume clusters, providing a clear edge for volume-based strategies.
This indicator empowers traders to analyze lower timeframes with the context of higher timeframe volume profiles, providing a solid basis for identifying critical support and resistance levels shaped by large volume clusters. Whether you’re looking to spot liquidity zones or align your trades with broader market trends, HTF Volume Footprint Profile equips you with a strategic view.
LVN/HVN Auto Detection [PhenLabs]📊 PhenLabs - LVN/HVN Auto Detection
Version: PineScript™ v6
📌 Description
The PhenLabs LVN/HVN Auto Detection indicator is an advanced volume profile analysis tool that automatically identifies Low Volume Nodes (LVN) and High Volume Nodes (HVN) across multiple trading sessions. This sophisticated indicator analyzes volume distribution patterns to pinpoint critical support and resistance levels where price is likely to react, providing traders with high-probability zones for entries, exits, and risk management.
Unlike traditional volume indicators that only show current activity, this tool builds comprehensive volume profiles from historical sessions and intelligently filters the most significant levels. It combines real-time volume analysis with dynamic level detection, offering both visual bubbles for immediate volume activity and persistent horizontal lines that act as ongoing support/resistance references.
🚀 Points of Innovation
Multi-Session Volume Profile Analysis - Automatically calculates and analyzes volume profiles across the last 5 trading sessions
Intelligent Level Separation Logic - Prevents overlapping signals by maintaining minimum separation between LVN and HVN levels
Dynamic Timeframe Adaptation - Automatically adjusts session lengths based on chart timeframe for optimal level detection
Real-Time Activity Bubbles - Shows volume activity strength through different bubble sizes at key levels
Persistent Line Management - Creates horizontal lines that extend until price crosses them, providing ongoing reference points
Dual Threshold System - Independent percentage-based thresholds for both LVN and HVN identification
🔧 Core Components
Volume Profile Engine : Builds 20-row volume profiles for each analyzed session, distributing volume across price levels
Level Identification Algorithm : Uses percentage-based thresholds to classify volume distribution patterns
Separation Logic : Ensures minimum distance between conflicting levels, prioritizing HVN when overlap occurs
Line Management System : Tracks active support/resistance lines and removes them when price crosses through
Volume Activity Monitor : Compares current volume to 13-period moving average for activity classification
🔥 Key Features
Customizable Thresholds : LVN threshold (5-35%, default 20%) and HVN threshold (65-95%, default 80%) for precise level filtering
Volume Activity Multiplier : Adjustable volume threshold (0.5+, default 1.5) for bubble and line creation sensitivity
Flexible Display Modes : Choose between Lines only, Bubbles only, or Both for optimal chart clarity
Smart Level Separation : Minimum separation percentage (0.1-2%, default 0.5%) prevents conflicting signals
Color Customization : Independent color controls for LVN (red) and HVN (blue) elements
Performance Optimization : Processes every 15 bars with maximum 500 active lines for smooth operation
🎨 Visualization
Colored Bubbles : Three sizes (large, medium, small) indicate volume activity strength at key levels
Horizontal Lines : Persistent support/resistance lines with width corresponding to volume activity
Dual Color System : Semi-transparent red for LVN areas, semi-transparent blue for HVN zones
Information Tooltip : Optional table showing usage guidelines and optimization tips
📖 Usage Guidelines
Volume Thresholds
LVN Threshold
○ Default: 20.0%
○ Range: 5.0-35.0%
○ Description: Price levels with volume below this percentage are marked as LVNs. Lower values create fewer, more significant levels. Typical range 15-25% works for most instruments.
HVN Threshold
○ Default: 80.0%
○ Range: 65.0-95.0%
○ Description: Price levels with volume above this percentage are marked as HVNs. Higher values create fewer, stronger levels. Range 75-85% is optimal for most trading.
Display Controls
Volume Threshold
○ Default: 1.5
○ Range: 0.5+
○ Description: Multiplier for volume significance (High=2+threshold, Medium=1+threshold, Low=0+threshold). Higher values require more volume for signals.
✅ Best Use Cases
Swing Trading : Identify key levels for position entries and exits over multiple days
Scalping : Use bubbles for immediate volume activity confirmation at critical levels
Risk Management : Place stops beyond LVN levels where price moves quickly
Breakout Trading : Monitor HVN levels for potential breakout or rejection scenarios
Multi-Timeframe Analysis : Combine with higher timeframe levels for confluence
⚠️ Limitations
Timeframe Sensitivity : Lower timeframes may produce too many levels; higher timeframes recommended for cleaner signals
Volume Data Dependency : Accuracy depends on reliable volume data from your data provider
Historical Analysis : Uses past volume data which may not predict future price behavior
Performance Impact : High number of active lines may affect chart performance on slower devices
💡 What Makes This Unique
Automated Session Analysis : No manual drawing required - automatically analyzes multiple sessions
Intelligent Filtering : Advanced separation logic prevents overlapping and conflicting signals
Adaptive Processing : Adjusts to different timeframes automatically for optimal level detection
Dual Visualization System : Combines persistent lines with real-time activity indicators
🔬 How It Works
1. Volume Profile Construction :
Analyzes the last 5 trading sessions with dynamic session length based on timeframe
Divides each session’s price range into 20 equal levels for volume distribution analysis
2. Level Classification :
Calculates volume percentage at each price level relative to session maximum
Identifies LVN levels below threshold and HVN levels above threshold
3. Signal Generation :
Creates bubbles when volume activity exceeds thresholds at identified levels
Draws horizontal lines that persist until price crosses through them
💡 Note : For optimal results, increase your chart timeframe if you see too many levels. The indicator performs best on 15-minute and higher timeframes where volume patterns are more meaningful and less noisy.
Open Liquidity Heatmap [BigBeluga]Open Liquidity Heatmap is an indicator designed to display accumulated resting liquidity on the chart.
Unlike any other liquidity heatmap, this aims to accumulate liquidity at specific levels that build up over time, showing larger areas of liquidity.
🔶 FEATURES
The indicator includes the following settings:
Lookback : Used to determine the range calculation of the heatmap.
Leverage : Leverage of the liquidation (Counted as % in price, Example: 4.5 will return a distance from price of 4.5%, indicating any possible resting liquidity in this range).
Levels : Amount of levels to display (Each level is counted as liquidity resting on the chart; fewer levels will return a bigger area of liquidity sitting on the chart).
Mode : Apply a color gradient from the minimum liquidation to the maximum liquidity level. Set the maximum color gradient value (Counted as volume).
Offset : Automatically determine the offset range of the Volume Profiles. Manual offset of the Volume Profiles.
🔶 CALCULATION
for i = 0 to step - 1
float plotter = na
switch i
0 =>
plotter := hs
=>
plotter := hs - diff * ( i )
cls.hm.gnL(plotter)
cls.vp.put(plotter, 0)
We calculate levels like a normal volume profile with steps, from the highest point within the lookback to the lowest one. Each level will contain the corresponding amount of volume that the candle has closed in that range.
As we can see in the image above, we add liquidity each time the distance in % from price is between two levels.
Unlike many liquidity indicators that provide a single candle liquidity heatmap, this aims to add up liquidity (volume) in already present levels.
This can be extremely useful to see which levels are likely to be more liquid and tend to get a bigger reaction to the price.
Imagine it like a range of levels that each time price revisits that area, a new position area is added; we add volume in that area each time price visits that zone. Liquidity builds up in those zones, causing a bigger reaction to the price once the price visits it.
This indicator is not the same as a single candle heatmap like many others. What is a single candle heatmap?
A single candle heatmap is when a level is created on every new candle, coloring the level based on the total volume of it.
This indicator, on the contrary, aims to provide a more specific use by adding up liquidity each time price visits it.
🔶 BASIC DEMOSTRATION
This is a basic demonstration of how we can spot high liquidity points overall using confluence:
We see the POC of the liquidation in a low volume area of the normal volume profile adding up as confluence.
Resistance from the POC Volume Profile suggesting price will go lower.
Major long open liquidity down.
As we can see, price takes out all the long liquidity and right after pumping, indicating that all the major liquidity got taken out.
Some key note to take is that a POC in the liquidation heatmap in a low volume area of the normal Volume Profile add confluence of a possible big reaction in that zone.
In the forex market, we suggest to use a low distance from price (Leverage) while in a crypto market you can use the one that fit the best the current timeframe.
🔶 CONCLUSION
This indicator aims to show open resting liquidity that had built up over time, showing the most amount of liquidation in specific areas in an aggregated way unlike many liquidation heatmap indicators that show single-level liquidation.
🔶 RELATED SCRIPT
OI Visible Range Ladder [Kioseff Trading]Hello!
This Script “OI Visible Range Ladder” calculates open interest profiles for the visible range alongside an OI ladder for the visible period!
Features
OI Profile Anchored to Visible Range
OI Ladder Anchored to Visible Range
Standard POC and Value Area Lines, in Addition to Separated POCs and Value Area Lines for each category of OI x Price
Configurable Value Area Targets
Curved Profiles
Up to 9999 Profile Rows per Visible Range
Stylistic Options for Profiles
Up to 9999 volume profile levels (Price levels) can be calculated for each profile, thanks to the new polyline feature, allowing for less aggregation / more precision of open interest at price.
The image above shows primary functionality!
Green profiles = Up OI / Up Price
Yellow profiles = Down OI / Up Price
Purple profiles = Up OI / Down Price
Red profiles = Down OI / Down Price
The image above shows POCs for each OI x Price category!
Profiles can be anchored on the left side for a more traditional look.
The indicator is robust enough to calculate on “small price periods”, or for a price period spanning your entire chart fully zoomed out!
That’s about it :D
This indicator is Part of a series titled “Bull vs. Bear” - a suite of profile-like indicators.
Thanks for checking this out!
If you have any suggestions please feel free to share!
Range Analysis - By LeviathanThe Interactive Range Analysis script is an essential tool for analyzing price ranges. It automatically draws important range levels, generates a Volume Profile or Open Interest profile and horizontal/vertical heatmaps, plots the anchored VWAP, draws Fibonacci levels, and much more.
How to use the indicator:
1. The script will prompt you to select the "Start Time" and "End Time" using Tradingview's interactive interface. These two points will determine the length of the range.
2. Once you have selected the range, the script will automatically anchor the range highs and lows to the highest and lowest close/wick/hlc3/ohlc4 (whichever you prefer).
3. You can then begin exploring different tools and options such as Quarters, Eighths, Fibonacci, Outer Levels, VWAP, Horizontal Volume/OI Heatmap, Vertical Volume/OI Heatmap, Fixed Range Volume Profile, Open Interest Profile, Value Area, VAH, VAL, and POC.
4. You can adjust the range by dragging the Start Time and End Time anchors or by removing/reapplying the script.
Tool overview
Range Levels
After selecting your preferred time range, the script will identify and draw a range high level and a range low level, which serve as a base for other important levels. “Half” is the level halfway between the range high and range low. “Quarters” will, as the name suggests, split the range into four equal zones (quarters) and “Eighths” will split the range into eight equal zones (eighths).
”Fibonacci” option allows you to display Fibonacci retracement levels (0.786, 0.618, 0.382, 0.236). “VWAP” will plot a Volume Weighted Average Price, anchored to the start of the range. “Direction” input lets you choose whether your range is UP or DOWN trending in order to make sure that the Fibonacci levels and labels are generated and assigned correctly. With “Outer” turned ON, the script will also generate active levels (quarters/eighths/Fibonacci) above and below the selected price range. “Extend Right” will extend all levels to the right indefinitely, while “Extend (+Bars)” lets you choose how far right the levels get extended. “Diagonal Line” is drawn from the bottom left of the range to the top right of the range or from the top left of the range to the bottom right of the range, depending on the “Direction” input.
Volume Profile / Open Interest Profile
After selecting the “Data Type”, Volume Profile or OI Profile can be generated by turning ON the “Volume/OI Profile” option.
“Resolution” input defines the amount of nodes/rows in the range that are used in profile/heatmap generation for distributing the data. While you can increase the “Resolution” to get better, more granular profiles, you should keep in mind that you might need to lower the resolution when generating profiles for larger ranges.
”Node Type” offers you two options when it comes to the representation of data: Up/Down - divides a node in two sections for up volume/OI and down volume/OI, Total - one node for total volume/OI and Delta - net difference in up volume/OI and down volume/OI.
”Profile Position” lets you choose whether the profile is positioned on the left side of the range or on the right side of the range.
“Profile Direction” determines whether the profile nodes are facing right or left.
“Profile Type” enables you to visualize the nodes in a classic way (Type 1) or in a way where down volume/negative OI are positioned on the left side of the y axis and up volume/positive OI on the right side of the y axis.
“Node Size (%)” defines how much space in the range can be taken by the profile’s nodes. Eg. 50% will allow the largest node to extend to the middle of the range (and others scaled accordingly), 100% will allow the largest node to extend the max right point of the range (and others scaled accordingly).
”Value Area (%)” defines the VA zone, which represents the area where the most volume occured (usually 70% or 68%).
”Horizontal Heatmap” will display a heatmap-like overlay, that will help you identify the price levels where most volume/open interest action occurred.
”Vertical Heatmap” will display a heatmap-like overlay, that will help you identify the points in time where most volume/open interest action occurred.
A more detailed description of this indicator is coming in the next few days.
Important:
* If volume or OI profile does not get generated, try lowering the resolution.
* Once in a while, the script will disappear from your chart. Just remove and reapply.
* Open Interest data is only avaiable on Binance Perpetual Futures pairs
To learn more, read the tooltips in the indicator’s settings and stay tuned for upcoming additions (Range Market Structure, Liquidation Levels, Range Statistics,…)
TPO[Fixed Range, Anchored, Bars Back]TPO Bars Back, Fixed Range and Anchored
Overview
The TPO Profile (Time Price Opportunity Profile) is a powerful market profile indicator that displays the amount of time price spent at different levels during a specified period. Unlike traditional volume profile indicators that show volume distribution, TPO Profile shows time distribution , providing insights into where price has spent the most time and identifying key support and resistance levels.
Key Advantages Over TradingView's Built-in TPO
Simplified Composite Creation : Automatically creates TPO profiles for any time range without manual split/merge operations
Instant Value Area Calculation : Immediately shows Value Area, POC, VAH, and VAL for your selected period
No Manual Assembly Required : TradingView's native TPO requires you to manually split sessions and merge them to create composites - this indicator does it automatically
Flexible Time Ranges : Create composites for any custom time period (multiple days, weeks, specific events) with a few clicks
Real-time Composite Updates : Anchor mode creates live composites that update as new data arrives
Multiple Composite Analysis : Easily compare different time periods without the tedious manual process
Key Features
Core Functionality
Time-Based Analysis : Shows time spent at each price level rather than volume
Configurable Time Blocks : Use any timeframe for TPO counting (30min, 1H, 4H, etc.)
Multiple Price Levels : Adjustable from 5 to 200 levels for granular analysis
Point of Control (POC) : Automatically identifies the price level with highest time activity
Value Area Calculation : Shows the price range containing 70% (configurable) of time activity
Automatic Composite Generation : Creates multi-session composites without manual intervention
Three Operating Modes
1. Bars Back Mode
Analyzes the last N bars from the current bar
Perfect for recent market activity analysis
Range: 10-500 bars
Use Case : Intraday analysis, recent session review
2. Fixed Range Mode
Analyzes a specific time period between start and end times
Ideal for historical analysis of specific events
Creates perfect composites for multi-day periods
Use Case : Earnings periods, news events, specific trading sessions, weekly/monthly composites
3. Anchor Mode (NEW)
Starts from a specific time and extends to the current bar
Dynamically updates as new bars form
Perfect for building live composites from any starting point
Use Case : Live session monitoring, event-based analysis from a specific point, growing composites
Visual Elements
TPO Bars
Horizontal bars showing time distribution at each price level
Longer bars = more time spent at that level
Color-coded to distinguish Value Area from outlying levels
Point of Control (POC)
Red line marking the price level with highest time activity
Most significant support/resistance level
Configurable line style (Solid/Dashed/Dotted) and width
Value Area High/Low (VAH/VAL)
Green and Orange lines marking the boundaries of the Value Area
Shows the price range containing the specified percentage of time activity
Optional display with customizable line styles
Single Print Detection
Identifies price levels touched by only one time block
Display options: Lines or Boxes
Purple color highlighting these significant levels
Often act as strong support/resistance in future trading
Customization Options
Time Block Configuration
Block Time : Choose timeframe for TPO counting (30min, 1H, 4H, etc.)
Allows analysis at different time granularities
Higher timeframes = broader perspective, Lower timeframes = finer detail
Visual Styling
Line Styles : Solid, Dashed, or Dotted for all line elements
Line Widths : 1-5 pixels for POC, VAH, and VAL lines
Colors : Fully customizable colors for all elements
Transparency : Adjustable transparency for better chart readability
Label Management
Show/Hide Labels : Toggle POC, VAH, VAL labels
Font Sizes : Tiny, Small, Normal, Large, Huge
Label Positioning : 8 different position options relative to lines
Offset Controls : Fine-tune label positioning
Line Extension
Level Offset Right : Controls how far lines extend
Smart extension logic:
Value ≤ 0: Infinite extension (extend.right)
Value ≥ 1: Extends exactly N bars ahead
Trading Applications
Support & Resistance
POC often acts as strong support/resistance
Value Area boundaries provide key levels
Single prints frequently become significant levels
Market Structure Analysis
Identify areas of price acceptance (thick TPO bars)
Spot areas of price rejection (thin TPO bars)
Understand where market participants are comfortable trading
Composite Profile Analysis
Create multi-day, weekly, or monthly composites instantly
Compare different composite periods without manual work
Analyze longer-term price acceptance levels
Build composites around specific events or announcements
Session Analysis
Monitor intraday session development in real-time
Compare different sessions (London, New York, Asia)
Track how profiles change throughout the trading day
Build live composites across multiple sessions
Event Analysis
Use Fixed Range mode for earnings, news events
Use Anchor mode to track price development from specific events
Compare pre/post event price acceptance levels
Create event-based composites automatically
Input Parameters
Mode Selection
Mode : Bars Back | Fixed Range | Anchor
Bars Back : Number of bars to analyze (10-500)
Start Time : Beginning time for Fixed Range and Anchor modes
End Time : Ending time for Fixed Range mode only
Analysis Configuration
Block Time : Timeframe for TPO blocks (e.g., "30" for 30-minute blocks)
TPO Levels : Number of price levels (5-200)
Value Area % : Percentage for Value Area calculation (50-95%)
Display Options
Show POC : Display Point of Control line
Show Value Area : Display Value Area box
Show VAH/VAL Lines : Display Value Area boundary lines
Show Single Prints : Display single print detection
Single Print Style : Lines or Boxes
Styling Controls
Colors : TPO, POC, Value Area, VAH, VAL, Single Print colors
Line Styles : POC, VAH, VAL line styles
Line Widths : POC, VAH, VAL line widths
Labels : Show/hide, font size, position, offset controls
Technical Details
Calculation Method
Divides the price range into equal levels based on TPO Levels setting
For each time block, determines which price levels it crosses
Adds +1 count to each crossed level
Identifies POC as the level with highest count
Calculates Value Area by expanding from POC until target percentage is reached
Performance Considerations
Historical data limited to prevent buffer overflow errors
Smart bounds checking for different timeframes
Optimized cleanup routines to prevent drawing object accumulation
Pine Script Version
Built on Pine Script v6
Uses modern Pine Script best practices
Efficient array handling and drawing object management
Best Practices
Timeframe Selection
Block Time = Chart Timeframe : Traditional TPO approach
Block Time > Chart Timeframe : Smoother, broader perspective
Block Time < Chart Timeframe : More granular, detailed analysis
Level Count Guidelines
Low levels (10-20) : Better for swing trading, major levels
High levels (50-100) : Better for scalping, precise entries
Very high levels (100+) : For very detailed analysis
Mode Selection
Bars Back : Daily analysis, recent activity
Fixed Range : Historical events, specific periods, manual composites
Anchor : Live monitoring, event-based analysis, growing composites
Composite Creation Workflow
Select Fixed Range or Anchor mode
Set your desired start time (and end time for Fixed Range)
Adjust TPO Levels for desired granularity
Enable VAH/VAL lines to see Value Area boundaries
The composite profile generates automatically with all key levels
This indicator eliminates the tedious manual process of creating composite TPO profiles in TradingView. Instead of splitting sessions and manually merging them, you get instant composite analysis with automatic Value Area calculation, POC identification, and single print detection. The combination of time-based analysis, multiple operating modes, and extensive customization options makes it a powerful tool for understanding market structure and price acceptance levels across any time period.
Market Structure Volume Distribution [LuxAlgo]The Market Structure Volume Distribution tool allows traders to identify the strength behind breaks of market structure at defined price ranges to measure de correlation of forces between bulls and bears visually and easily.
🔶 USAGE
This tool has three main features: market structure highlighting, grid levels, and volume profile. Each feature is covered more in depth below:
🔹 Market Structure
The basic unit of market structure is a swing point, the period of the swing point is user-defined, so traders can identify longer-term market structures. Price breaking a prior swing point will confirm the occurrence of a market structure.
The tool will plot a line after a market structure is confirmed, by default the lines on bullish MS will be green (indicative of an uptrend), and red in case of bearish MS (indicative of a downtrend).
🔹 Grid Levels
The Grid visually divides the price range contained inside the tool execution window, into equal size rows, the number of rows is user-defined so users can divide the full price range up to 100 rows.
The main objective of this feature is to help identify the execution window and the limits of each row in the volume profile so traders can know in a simple look what BoMS belongs to each row.
There is however another use for the grid, by dividing the range into equal-sized parts, this feature provides automatic support and resistance levels as good as any other.
Grid provides a visual help to know what our execution window is and to associate MS with their rows in the profile. It can provide S/R levels too.
🔹 Volume Profile
The volume profile feature shows in a visually easy way the volume behind each MS aggregated by rows and divided into buy and sell volume to spot the differences in a simple look.
This tool allows users to spot the liquidity associated with the event of a market structure in a specific price range, allowing users to know which price areas where associated with the most trading activity during the occurrence of a market structutre.
🔶 SETTINGS
🔹 Data Gathering
Execute on all visible range: Activate this to use all visible bars on the calculations. This disables the use of the next parameter "Execute on the last N bars". Default false.
Execute on the last N bars: Use last N bars on the calculations. To use this parameter "Execute on all visible range" must be disabled. Values from 20 to 5000, default 500.
Pivot Length: How many bars will be used to confirm a pivot. The bigger this parameter is the fewer breaks of structure will detect. Values from 1, default 2
🔹 Profile
Profile Rows: Number of rows in the volume profile. Values from 2 to 100, default 10.
Profile Width: Maximum width of the volume profile. Values from 25 to 500, default 200.
Profile Mode: How the volume will be displayed on each row. "TOTAL VOLUME" will aggregate buy & sell volume per row, "BUY&SELL VOLUME" will separate the buy volume from the sell volume on each row. Default BUY&SELL VOLUME.
🔹 Style
Buy Color: This is the color for the buy volume on the profile when the "BUY&SELL VOLUME" mode is activated. Default green.
Sell Color: This is the color for the sell volume on the profile when the "BUY&SELL VOLUME" mode is activated. Default red.
Show dotted grid levels: Show dotted inner grid levels. Default true.
Market Core [BigBeluga]MARKET CORE Toolkit
The BigBeluga Market Core Toolkit is a comprehensive suite of advanced trading indicators designed to provide traders with a holistic view of market dynamics, structure, and potential opportunities.
In an ever-evolving market, relying on a single indicator can leave traders vulnerable to gaps in their analysis. The BigBeluga Market Core Toolkit addresses this challenge by integrating a range of complementary indicators that work synergistically to reveal the full picture. From detecting key support and resistance levels to identifying market structure shifts, volume imbalances, inefficiencies or analysis of money flow, this toolkit covers every aspect of market behavior.
⬤ Order Blocks
BigBeluga Order Blocks revolutionize the way traders visualize potential areas of significant market activity. Unlike traditional order block indicators that often result in cluttered, noisy charts, these Order Blocks are designed for clarity and effectiveness. They simulate and predict where large areas of market orders may rest by analyzing volume and volatility, providing excellent support or resistance areas.
The blocks offer cleaner chart presentation with reasonable distribution, volume ratio visualization within each block, and categorization into Strong, High and Balanced blocks.
Additionally, a third line has been introduced to rank order blocks by volume using a modified percent rank method for more precise ranking.
This ranking system uses percentile ranks, a concept commonly used in standardized tests. In the context of order blocks, the percentile rank of a particular order block's volume is interpreted as the percentage of the order blocks strength. This method provides a more nuanced and statistically robust way of comparing and prioritizing order blocks.
Key features:
Cleaner chart presentation with reasonable distribution of blocks
Volume ratio visualization within each block (bullish vs bearish)
Categorization into High and Balanced blocks for easy identification of significant levels
Relative volume percentage and volume delta display
Advanced ranking system using modified percent rank method for volume comparison
These Order Blocks help traders:
Forecast excellent support or resistance areas
Gain insight into the balance of the market at specific levels
Identify significant market levels at a glance
Visualize market imbalances through volume delta
Prioritize order blocks based on their relative volume importance
Make more informed decisions about potential entry and exit points
⬤ Beluga Profile
The Beluga Profile is a revolutionary market analysis tool that transforms complex market data into a clear, intuitive visual narrative. At its core, it combines a Dual-Profile Analysis, merging Delta Volume Profile with Money Flow Profile to give traders a comprehensive view of market dynamics.
The percentage scale on the left side aren't just numbers; they represent the Levels Strength Percentage, a crucial ranking system that immediately draws your attention to the most significant price zones. Complementing this, a heat map overlay brings these strength levels to life, offering an instant, color-coded representation of where the market's most influential areas lie.
To the right, a detailed breakdown of volume and money flow for each level provides the hard data behind the visual cues. This granular information allows you to dive deep into the market's structure, understanding not just where the significant levels are, but why they matter.
Below the main chart, the Delta Volume Bar serves as a foundation, showing the average delta of the volume profile. This bar is more than just a measure of volume – it's a window into the underlying forces driving price movement. Just above this bar, a macro trend indicator in the form of an arrow offers a quick, clear signal of the overall market direction based on these delta volume calculations.
But the Beluga Profile doesn't just show you what's happening – it helps you understand the 'why' and 'how'. The Adaptive Points of Interest feature allows you to customize your analysis, focusing on the areas that matter most to your trading strategy. You can select from various options including Money Flow, Delta+, Delta-, Volume+, and Level % (Highest), tailoring the display to your specific analytical needs. This flexibility ensures you can focus on the most relevant data for your trading style. Real-time Active Price Tracking ensures you're always in sync with the latest market movements.
All of these elements work in concert, creating a symphony of market information. They empower you to:
Spot key price levels with uncanny precision
Foresee potential market turns before they happen
Grasp the quality and strength of price moves
Adjust your strategy on the fly as market conditions shift
Develop a holistic understanding of market structure and participant behavior
Make informed decisions backed by a clear view of the overall market trend
In essence, the Beluga Profile isn't just a tool – it's your market storyteller, translating the complex language of price, volume, and money flow into a narrative that you can understand and act upon with confidence.
⬤ Smart Money Concepts (SMC)
The Smart Money Concepts component of the toolkit focuses on automatically detecting key market structures crucial in technical analysis. It identifies and visualizes Break of Structure (BOS) and Change of Character (CHOCH) patterns, helping traders spot potential trend reversals and significant market movements. This includes BOS identification when price breaks previous support or resistance and CHOCH detection for potential trend reversals, with automatic detection of both bullish and bearish patterns.
The latest enhancement to this feature adds a new layer of analysis through Delta Volume Calculation. When a BOS or CHOCH is detected, the toolkit calculates the delta volume within the range from the high or low point to the break point. This analysis considers all the candles in this range and determines whether the volume is predominantly bullish, bearish, or neutral.
Bullish Volume: If the delta volume is bullish, a green diamond is plotted at the high or low point, indicating potential upward momentum.
Bearish Volume: If the delta volume is bearish, a red diamond is plotted, suggesting downward pressure.
Neutral Volume: When the volume is neutral, a yellow diamond is displayed, indicating a balance in buying and selling forces.
This visual representation of volume dynamics provides an additional layer of insight, helping traders assess the strength and direction of price movements following a structure break. You can see an example of this on the attached image, where the diamonds clearly indicate the type of volume driving the breakout.
The toolkit also incorporates Fair Value Gap (FVG) Detection. Fair Value Gaps represent inefficiencies in the market, where there is an imbalance between buy and sell orders. These gaps often act as magnets for price, potentially leading to future reversals or continuations when filled. The toolkit identifies and highlights these gaps, allowing traders to recognize areas where the market may seek to rebalance.
Additionally, Double Top and Bottom Pattern Detection has been integrated, identifying potential reversal points at these classic price formations. Double tops signal potential bearish reversals after a price peak, while double bottoms suggest potential bullish reversals after a price dip. These patterns can be crucial indicators for traders looking to capitalize on upcoming trend changes.
Smart Money Concepts help traders:
Identify potential trend reversals early with a clearer view of market structure.
Recognize significant changes in market structure and volume participation.
Differentiate between temporary pullbacks and genuine trend changes using volume insights (color coded diamonds).
Shows Fair Value gaps which helps to identify price momentum and inefficiencies in the market.
This enhancement ensures that traders can not only see structural changes but also understand the volume behind those moves, leading to more informed and confident trading decisions.
⬤ Support and Resistance Levels
This powerful tool is designed to identify key price levels in the market, providing traders with a clear visual representation of potential support and resistance areas. It goes beyond simple level identification by incorporating a sophisticated ranking system and adjustable sensitivity.
The grading system of levels is a unique feature that evaluates the significance of high and low points in the price action. It takes into consideration how many times the price has touched or interacted with specific levels. This means that levels which have been tested multiple times are given higher importance in the ranking. For example, a price level that has acted as support or resistance three times will be ranked higher than a level that has only been touched once.
By leveraging this grading system, traders can focus on the most significant levels that have repeatedly influenced price action, potentially improving the accuracy of their trading decisions and risk management strategies.
This Support and Resistance Levels indicator helps traders:
Identify and prioritize potential reversal points based on their historical significance and frequency of price interaction
Set more accurate entry and exit points aligned with key market levels, focusing on those with higher ranking
Understand the hierarchical structure of market support and resistance, distinguishing between major and minor levels
Plan stop-loss and take-profit levels with greater precision, using the ranking to gauge the strength of each level
Adapt their analysis to varying market strengths and volatilities, with the ability to filter out less significant levels
Recognize recurring price patterns and potential breakout levels based on the ranked historical price interactions
⬤ How to Use the Toolkit
Each of these indicators, while powerful on its own, works synergistically with the others to provide a more complete picture of the market.
The strength of this toolkit lies in its ability to analyze the market from multiple perspectives
Combining these advanced trading indicators into a cohesive toolkit empowers traders with a comprehensive, multi-dimensional view of the market that no single indicator could provide on its own. The market's complexity demands an approach that goes beyond relying on just one aspect, such as price action, volume, or order flow. Integrating these diverse indicators creates a robust analytical framework that captures the market from multiple angles, leading to more accurate insights and better-informed decision-making.
Analyze Order Blocks to identify potential support/resistance and volume imbalances
Use Beluga Profile for comprehensive market structure and trend analysis
Monitor SMC indicators for potential trend reversals and breakouts
Utilize Support and Resistance Levels for precise entry/exit points and risk management
Combine insights from all tools for a multi-dimensional view of market conditions
⬤ Customization
Each component of the toolkit offers various customization options to suit different trading styles and preferences. These inputs allow traders to adjust settings to better fit their analysis needs and strategies:
Order Blocks
- Order Blocks : Set the amount of Order Blocks on the chart.
- Color Selection : Choose the color for highlighting the order blocks on your chart.
Market Structure
- Sensitivity : Adjust the sensitivity for detecting market structure breaks. Higher sensitivity will detect more granular breaks, while lower sensitivity focuses on more significant movements.
- Data : Enable or disable the display of market structure data.
- Zigzag Option : Toggle Zigzag displays from highs and lows.
S/R (Support and Resistance)
- Sensitivity : Control how sensitive the tool is in detecting support and resistance levels. Lower sensitivity will highlight fewer but stronger levels, while higher sensitivity may reveal more levels.
- Width % : Adjust the width of the support and resistance zones to visually emphasize their importance.
- Color Selection : Choose colors for both support and resistance levels for better clarity.
FVG (Fair Value Gap)
- Max : Set the maximum number of fair value gaps to display. Higher values will show more gaps, while lower values will focus on the most prominent ones.
- Color Selection : Customize the color for the fair value gap areas.
Volume Profile
- Length : Define the look-back period for the volume profile analysis. A longer length considers more historical data, while a shorter length focuses on recent data.
- Levs : Choose the number of volume levels to display, allowing for more or fewer volume bars within the profile.
- BG : Enable or disable background shading for the volume profile.
- HeatMap : Activate or deactivate the heat map overlay for volume intensity visualization.
- POC (Point of Control) : Toggle the Point of Control display and choose between different metrics, such as volume+, money flow, Delta+ and Delta-, Level % (Highesr), to base the POC on.
- Color Selection : Customize the color for the Point of Control line.
These customization options provide traders with the flexibility to tailor the toolkit to their specific trading strategies, enhancing their ability to identify key market signals with precision.
Each component of the toolkit offers various customization options to suit different trading styles and preferences.
The BigBeluga Market Core Toolkit synthesizes complex market data into clear, actionable formats, providing traders with professional-level insights. It's a comprehensive market analysis system that can give traders a significant edge in understanding market behavior and identifying high-probability trade setups. While highly effective, it's recommended to use this toolkit in conjunction with fundamental analysis and sound risk management practices for optimal trading results.